Hello everyone,
as i am getting no solution fitting for my situation I am looking for some support here.
I want to create a mobile VPN Router, based on a Rasperry PI 4 (as in the NetworkChuck Youtube video). But instead of going via an commercial VPN Provider, I want to connect via Wireguard to my Fritz Box. I got to the situation that I am getting a slow TX connection, but no RX traffic.
I also wanted to change the IP on the Raspi, but wasnt sure how this might affect the config overall.
I am copying my configs so far and would really appreciate any help!
Network
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fd35:727f:b647::/48'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '60'
option force_link '1'
config interface 'wwan'
option proto 'dhcp'
option peerdns '0'
option dns '1.1.1.1 8.8.8.8'
config interface 'vpnclient'
option proto 'none'
option device 'tun0'
config interface 'wg0'
option proto 'wireguard'
option private_key '*********'
option mtu '1412'
option listen_port '51505'
list addresses '192.168.178.0/24'
list addresses '0.0.0.0/0'
config wireguard_wg0
option description 'WGuardHome'
option endpoint_host '******.myfritz.net'
option public_key '*****************'
option private_key '******'
option preshared_key '******'
list allowed_ips '192.168.178.0/24'
list allowed_ips '0.0.0.0/0'
option endpoint_port '51505'
option persistent_keepalive '25'
option route_allowed_ips '1'
Firewall
config defaults
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'REJECT'
option synflood_protect '1'
config zone
option name 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
list network 'lan'
config zone
option name 'wan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'REJECT'
option masq '1'
option mtu_fix '1'
list network 'wan'
list network 'wan6'
list network 'wwan'
config zone
option name 'fw_wg0'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option masq '1'
option mtu_fix '1'
list network 'wg0'
config forwarding
option src 'lan'
option dest 'fw_wg0'
Thanks again!