uvok on Nostr: #ipv6 #linux #networking #dn42 Current setup: # cat /etc/rc.local #!/bin/sh ...
#ipv6 #linux #networking #dn42
Current setup:
# cat /etc/rc.local
#!/bin/sh
/usr/sbin/ip rule add table 250
/usr/sbin/ip -6 rule add table 250
/usr/sbin/ip rule add table 200
/usr/sbin/ip -6 rule add table 200
# cat /etc/iproute2/rt_tables
...
200 wg_local
250 dn42
// wg0 is my "local" wireguard tunnel between VPS and home
# cat /etc/wireguard/wg0.conf
[Interface]
# ...
Table = 200
# cat /etc/bird/bird.conf
protocol kernel {
kernel table 250;
...
Current setup:
# cat /etc/rc.local
#!/bin/sh
/usr/sbin/ip rule add table 250
/usr/sbin/ip -6 rule add table 250
/usr/sbin/ip rule add table 200
/usr/sbin/ip -6 rule add table 200
# cat /etc/iproute2/rt_tables
...
200 wg_local
250 dn42
// wg0 is my "local" wireguard tunnel between VPS and home
# cat /etc/wireguard/wg0.conf
[Interface]
# ...
Table = 200
# cat /etc/bird/bird.conf
protocol kernel {
kernel table 250;
...