Install tailscale
Install, not configure
This commit is contained in:
@ -19,6 +19,9 @@ table inet filter {
|
||||
|
||||
# Allow nebula
|
||||
udp dport {{ nebula_listen_port }} accept;
|
||||
|
||||
# Allow Tailscale
|
||||
udp dport {{ tailscale_port }} accept;
|
||||
}
|
||||
|
||||
chain POSTROUTING {
|
||||
@ -27,6 +30,7 @@ table inet filter {
|
||||
|
||||
# NAT - because the proxmox machines may not have routes back
|
||||
ip saddr {{ nebula.cidr }} ip daddr {{ pve_hosts.internal_cidr }} counter masquerade
|
||||
ip saddr {{ tailscale_cidr }} ip daddr {{ pve_hosts.internal_cidr }} counter masquerade
|
||||
}
|
||||
|
||||
chain FORWARD {
|
||||
@ -39,5 +43,9 @@ table inet filter {
|
||||
|
||||
# Allow monitoring of nebula network
|
||||
ip saddr {{ pve_hosts.forrest.ip }}/32 ip daddr {{ nebula.cidr }} accept
|
||||
|
||||
# Allow traffic from Tailscale to proxmox network
|
||||
ip saddr {{ tailscale_cidr }} ip daddr {{ pve_hosts.internal_cidr }} accept
|
||||
ip saddr {{ pve_hosts.internal_cidr }} ip daddr {{ tailscale_cidr }} ct state related,established accept
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user