Hi,
i’m quite new to VyOS, and this is my first post here.
Here is my problem (VyOS Version 1.1.8):
I wanted to set up a pppoe connection and then enable source NAT. But i can’t select the pppoe connection as outbound-interface:
Could someone point me to my error?
Here is the configuration i have so far:
[code]admin@vyos# sh
interfaces {
ethernet eth0 {
address 192.168.16.77/24
hw-id 08:00:27:83:20:4c
}
ethernet eth1 {
hw-id 08:00:27:30:fe:1a
pppoe 0 {
default-route auto
password testpwd
user-id testuser
}
}
loopback lo {
}
}
+nat {
- source {
-
rule 100 {
-
source {
-
address 192.168.16.0/24
-
}
-
}
- }
+}
service {
ssh {
port 22
}
}
system {
config-management {
commit-revisions 20
}
console {
device ttyS0 {
speed 9600
}
}
login {
user admin {
authentication {
encrypted-password “”
plaintext-password “”
}
level admin
}
}
ntp {
server 0.pool.ntp.org {
}
server 1.pool.ntp.org {
}
server 2.pool.ntp.org {
}
}
package {
repository community {
components main
distribution helium
url http://packages.vyos.net/vyos
}
}
syslog {
global {
facility all {
level notice
}
facility protocols {
level debug
}
}
}
}[/code]
And here i try to set the outbound interface:
admin@vyos# set nat source rule 100 outbound-interface
Possible completions:
<interface> Interface name or "any"
any
eth0
eth1
lo
Hopefully there is someone here that spot my error.
Thanks in advance!
Best regards
Simon