I have two machines. One runs arch linux and another runs fedora. arch uses iproute2. so i need a conversion for iproute2 from route. this command will set the default interface to ppp0.

I have searched for documentation but I have still no clue.

How shall do this in iproute2

route add default ppp0
link|improve this question

feedback

2 Answers

I found it, its

ip route add default dev ppp0
link|improve this answer
feedback
ip route add default via 192.0.2.254

You can't specify a device for a route, it has to be an address. Generally you shouldn't have to do this at all; pppd should take care of adding a default route if it is configured appropriately.

link|improve this answer
I have two NICs, eth0 and ppp0, so i need to bond a default interface. – Idlecool Jul 24 '11 at 12:40
No you don't. Routing doesn't work like that. – womble Jul 24 '11 at 12:41
1  
It's entirely valid to specify a device as a default route. It's only valid when that interface is a point-to-point though. – MikeyB Jul 24 '11 at 14:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.