Router - Linux: Difference between revisions
Appearance
Content deleted Content added
clean up |
|||
| (4 intermediate revisions by one other user not shown) | |||
| Line 69: | Line 69: | ||
==IPv6== |
==IPv6== |
||
Assign your /64 to the inside interface of your router - eth1 in this example. |
*Assign your /64 to the inside interface of your router - eth1 in this example. |
||
ifconfig eth1 inet6 add 2001:8b0:blah/64 |
ifconfig eth1 inet6 add 2001:8b0:blah/64 |
||
Enable ipv6 forwarding by adding to /etc/sysctl.conf: |
*Enable ipv6 forwarding by adding to /etc/sysctl.conf: |
||
net.ipv6.conf.default.forwarding=1 |
net.ipv6.conf.default.forwarding=1 |
||
net.ipv6.conf.all.forwarding=1 |
net.ipv6.conf.all.forwarding=1 |
||
If you don't want to reboot, also push these values into /proc/sys/etc.: |
*If you don't want to reboot, also push these values into /proc/sys/etc.: |
||
echo 1 > /proc/sys/net/ipv6/conf/all/forwarding |
echo 1 > /proc/sys/net/ipv6/conf/all/forwarding |
||
echo 1 > /proc/sys/net/ipv6/conf/default/forwarding |
echo 1 > /proc/sys/net/ipv6/conf/default/forwarding |
||
| Line 92: | Line 92: | ||
3.2.0-rc5 |
3.2.0-rc5 |
||
==PPPoE== |
===PPPoE=== |
||
Linux is capable of supporting RFC 4638 for an MTU of 1500 (or greater) over PPPoE |
*Linux is capable of supporting RFC 4638 for an MTU of 1500 (or greater) over PPPoE |
||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | This was reported in IRC on Feb 6th 2011. If you get people saying their line didn't come back or their linux box crashed (as in kernel oopsed) after a blip, turns out there's a bug in the kernel pppoe code for 2.6.36 which has been hitting me. some kind of double free in the disconnect code causes a kernel panic. there's a patch here: http://kerneltrap.org/mailarchive/linux-kernel/2010/12/3/4654538 which seems to work for me |
||
| ⚫ | |||
| ⚫ | |||
[[Category:Routers]] |
|||
| ⚫ | |||
| ⚫ | This was reported in IRC on Feb 6th 2011. If you get people saying their line didn't come back or their linux box crashed (as in kernel oopsed) after a blip, turns out there's a bug in the kernel pppoe code for 2.6.36 which has been hitting me. some kind of double free in the disconnect code causes a kernel panic. there's a patch here: http://kerneltrap.org/mailarchive/linux-kernel/2010/12/3/4654538 which seems to work for me |
||