Ben Nov 7, 2011 #1 Hi, Is it possible to configure an IPv4 and IPv6 default router at the same time? Thanks for infos.
SirDice Administrator Staff member Administrator Moderator Nov 8, 2011 #3 Code: ipv6_defaultrouter="2001:1234:5678::1" defaultrouter="1.2.3.4"
OP Ben Nov 8, 2011 Thread Starter #4 Yes, this is what I tried. But when I run Code: ping6 ipv6.google.com I get "No route to host" so I thought maybe it won't work because of the two default routers. Ok, then I keep searching why the ipv6_defaultrouter is not added as a default route. Thanks.
Yes, this is what I tried. But when I run Code: ping6 ipv6.google.com I get "No route to host" so I thought maybe it won't work because of the two default routers. Ok, then I keep searching why the ipv6_defaultrouter is not added as a default route. Thanks.
SirDice Administrator Staff member Administrator Moderator Nov 8, 2011 #5 Changes to /etc/rc.conf are not 'instant'. They are settings used when the system is booted. Use netstat(1) and route(8). Another possiblity is a firewall that's blocking the traffic. This would result in a similar message.
Changes to /etc/rc.conf are not 'instant'. They are settings used when the system is booted. Use netstat(1) and route(8). Another possiblity is a firewall that's blocking the traffic. This would result in a similar message.
E ecazamir Nov 8, 2011 #7 For IPv4, usually is enough to: Code: # /etc/rc.d/netif restart # /etc/rc.d/routing restart when you work at the console.
For IPv4, usually is enough to: Code: # /etc/rc.d/netif restart # /etc/rc.d/routing restart when you work at the console.
OP Ben Nov 8, 2011 Thread Starter #8 Yes, I know. I just rebooted for convenience reasons. It's a testing system. Thanks for your help.