Showing posts with label Improving. Show all posts
Showing posts with label Improving. Show all posts

Wednesday, June 19, 2013

Common style is key to S’pore football improving, says head coach Stange

SINGAPORE - If the standard of Singapore football is to improve, then its national sides must share the same footballing philosophy, said Singapore national head coach Bernd Stange.

A month after his appointment, the German said the priority is to get the under-21, under-23 and senior national sides playing the same way.

However, the 65-year-old lamented the poor state of S-League pitches that hinders the one-touch football he is preaching to get this moving.“Even the parks in the city boast of fields of better playing conditions,” he quipped.

Stange was addressing the media on Monday after receiving a certificate and €1,000 for being among five nominees in the inaugural German Football Ambassador Award, which was won by former journalist Holger Obermann. Stange has donated his prize money to Singapore Cerebral Palsy Football Team.

For now, he has given Football Association of Singapore (FAS) Technical Director Slobodan Pavkovic inputs on how the three-year-old National Football Syllabus can get everyone in the football fraternity on the same page.

A new programme will be rolled out in a month’s time, and if successful, it will be recommended to all S-League clubs.

But Stange made clear he will not be changing everything in the current syllabus as it is of a high international standard adapted from top footballing countries and with a clear strategic programme.

“There are special football things in the technical department where I can help and I have to do that,” said the former Belarus and Iraq coach.

“I am not a politician in our federation. I am a coach and responsible for the technical department and please believe me, I will control it. We will go in one direction because there is no way right and no way left.”

Stange led the Lions to wins over Myanmar (2-0) and Laos (5-2) in friendlies earlier this month as preparations for the upcoming Asian Cup qualifier at home to Oman on Aug 14.

The Lions had lost 4-0 to Jordan in their opening Asian Cup group match back in February. Back then, the team was led by caretaker coach V. Sundramoorthy.

But even though Stange knows that good results in the Asian Cup qualifers could give Singapore football a huge boost, he said that qualification for the 2015 Finals is not his main priority.

“I would like to say it is not the most important thing,” he said. “The most important thing I am here for is to realise our strategy and if we can beat Oman, it would be great.

“It would be brilliant because we have a couple of players in our team, they are over 30 years old. If I mention Qiu Li or Indra (Sahdan) or Noh Rahman, if I mention these players, it is their last chance to do something.

“If we cannot win, there will soon be a change in more young players because the next highlight for our national team is next year (Suzuki Cup). We want to do everything but the AFC qualifiers is not our main target.”

(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "http://connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, "script", "facebook-jssdk"));

View the original article here

Friday, June 7, 2013

Improving the Performance of Distance-Vector Routing Protocols

This white paper examines techniques for improving the performance of Distance-Vector (D- V) routing protocols, including some techniques used with D-V protocols to solve the looping problem, and to speed convergence.

Route poisoning is the idea is that when a router learns that a route is unreachable, instead of just removing it from the routing table and no longer advertising it, it advertises the route with the maximum metric (which the routers treat as "infinity"), and then removes it.

The effect of this is that routers are now able to explicitly inform their neighbors that they can no longer get packets to a prefix. Thus, instead of waiting for the flush timer to remove the route from the routing tables, it is removed at the next update.

An enhancement to this goes by the name poison reverse. What this means is that when a router poisons a route (advertises it as unreachable), a neighbor that now has no route to that destination will echo the poisoning back. This makes sure that both routers know that the route is unreachable, and there is no way that a loop between those two routers could form. Note that poison reverse overrides the split horizon rule, but because the routers are advertising "bad news," it's allowed.

One thing we can do to break a loop is to enforce a rule that if a metric exceeds a specified maximum, that route is considered unreachable and removed from the routing table. Once the metric exceeds the maximum, the route will be removed from the routing table, and it will no longer be advertised to any neighbors. Eventually the route times out of the neighbors' routing tables as well, and the network is converged. For IP RIP, for example, a metric of 16 or more hops is considered infinity. With an update timer of 30 seconds and a flush timer of 4 minutes, convergence for RIP should occur within 12 minutes.

While defining a maximum stops a routing loop from existing forever, it could still last a long time. What we'd really like to do is prevent the loop from forming between the two routers in the first place. This can be accomplished by enforcing the split horizon rule which says: "It is never useful to advertise information back in the direction from which it came."

This means that if a router learns a route on one interface, and decides that's the best way to reach that destination, it won't advertise that route back out on that same interface. It will, however, advertise the route on the other interfaces. So, instead of just simple-mindedly sending its routing table out on every interface, the router actually filters the table in accordance with the split horizon rule, on a per-interface basis. This process of sending information out on all interfaces other than the one on which it is received is called flooding.

The split horizon rule has two effects.

Since a router can no longer advertise a "best" route back to the router from which it learned it, no loop can form between two routers.The routers don't waste each others' time and bandwidth with redundant advertisements. (Why tell them what they told just you?)

Note that it's not a violation of split horizon for a router to advertise a better route to a prefix from neighbors from which it has learned an inferior route. In fact, it's required! For IP RIP, which has a 4-minute flush timer and a 30-second update timer, the split horizon rule should reduce the convergence interval to less than 5 minutes.

Another way to shorten convergence time is to have the routers advertise changes that occur when they occur, rather than waiting until the next update interval. Referred to as a triggered update (also known as a triggered incremental or flash update), it only contains information about the route for which the status has changed. This change could be that the route has become unreachable (route poisoning), that it has become reachable, or that its metric has changed. Flash updates occur in addition to the periodic flooding of the routing tables, and can reduce the convergence time to nearly zero.

Imagine that we have a topology consisting of three routers (R1, R2, and R3) in a triangle, with each router directly connected to the other two (a full mesh). R1 also has a directly connected stub route, 10.1.0.0/16, for a total of four subnets.


View the original article here