I've got a PPPoE server set up in VyOS:
# show service pppoe-server | strip-private
authentication {
local-users {
username xxxxxx {
password xxxxxx
rate-limit {
download 1024
upload 1024
}
}
}
mode local
protocols mschap-v2
}
client-ip-pool {
start xxx.xxx.100.100
stop xxx.xxx.100.199
subnet xxx.xxx.100.0/24
}
gateway-address xxx.xxx.100.1
interface eth1.100 {
}This creates a ppp0 network device:
# ip link show dev ppp0
6: ppp0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1492 qdisc tbf state UNKNOWN mode DEFAULT group default qlen 3
link/pppWhen I try to create a zone with this interface, it does not show on the completion list, even though adding it works:
# set zone-policy zone PPPoE interface Possible completions: <text> Interface associated with zone eth0 eth1 eth1.100 eth1.55
# set zone-policy zone PPPoE interface ppp0 [edit] # commit [edit]