fincoop Tux's lil' helper
![Tux's lil' helper Tux's lil' helper](/images/ranks/rank_rect_1.gif)
Joined: 02 Feb 2004 Posts: 147
|
Posted: Thu Aug 30, 2007 1:32 pm Post subject: [SOLVED] Kernel PPPOE + 802.1Q VLANs |
|
|
Quote: | When using RP-PPPOE I can specify "vlan10" as the interface that pppoe should use. I have 802.1q configured on my physical eth0 interface. I tried using the kernel module, but for link_ppp0 it seems that pppd expects /dev/tty or something. Has anyone used the newer method with VLANs? |
As I was entering the bug on bugzilla I caught a syntax error:
Code: | plugins_pppo=( "pppoe" ) | Should have been: Code: | plugins_ppp0=( "pppoe" ) |
After that all is well. Here is my net config for future reference:
Code: | vconfig_eth0=( "set_name_type VLAN_PLUS_VID_NO_PAD" )
config_eth0=( "192.168.1.2/24" )
vlans_eth0="10 11 12"
config_vlan10=( "null" )
config_vlan11=( "192.168.11.2/24" )
config_vlan12=( "192.168.12.2/24" )
dns_domain="<masked>"
dns_servers="192.168.12.1"
config_ppp0=( "ppp" )
link_ppp0="vlan10"
plugins_ppp0=( "pppoe" )
username_ppp0='user@domain.com'
password_ppp0='<masked>'
pppd_ppp0=( "updetach" "noauth" "defaultroute" "lcp-echo-interval 15" "lcp-echo-failure 3" ) |
|
|