orris
@orris@lemmy.world
This is a remote user, information on this page may be incomplete. View at Source ↗
- Comment on wireguard docker client error with ip6_tables 4 weeks ago:
Thats great! Overly simplistic explanation, the container is in its own little network and when you connect wireguard inside the container it is punching a hole out to where the wireguard server is located.
The allowed ips is a list, off the top of my head it accepts single IPs and cidr blocks. 0.0.0.0/0 is the cidr block that essentially means all ipv4 IPs, ::/0 is the same for ipv6. So to answer directly, the
,
is an or, its for any IP in the list. - Comment on wireguard docker client error with ip6_tables 5 weeks ago:
Does your wireguard config have ipv6 addresses? If your not using them you can safely remove them.
For example Change
AllowedIPs = 0.0.0.0/0, ::/0
ToAllowedIPs = 0.0.0.0/0