Router - OpenBSD: Difference between revisions
Appearance
Content deleted Content added
Created page with "You can use a computer running OpenBSD as your AAISP router, and make use of its simple configuration and powerful 'pf' firewall. I'll assume your box has two NICs, re0 and r..." |
No edit summary |
||
| Line 14: | Line 14: | ||
authproto chap authname 'aa11@a.1' authkey 'yourpasswordgoeshere' up |
authproto chap authname 'aa11@a.1' authkey 'yourpasswordgoeshere' up |
||
dest 0.0.0.1 |
dest 0.0.0.1 |
||
inet6 |
inet6 autoconf |
||
!/sbin/route add default -ifp pppoe0 0.0.0.1 |
!/sbin/route add default -ifp pppoe0 0.0.0.1 |
||
!/sbin/route add -inet6 default -ifp pppoe0 fe80:: |
|||
Once this is all done, you should be able to just run: <code>sh /etc/netstart</code> and have your PPPoE connect (watch the syslog for details). It should automatically reconnect if there's a dropout. |
Once this is all done, you should be able to just run: <code>sh /etc/netstart</code> and have your PPPoE connect (watch the syslog for details). It should automatically reconnect if there's a dropout. |
||