RSS Amplifier

Recent Questions - Super User · Jun 10, 2023

How does one create nftables rule that accepts connections from the same IPv6 subnet, when the IPv6 prefix is dynamic?

0
Sign in to vote or save

This page did not load. You can still read it on the original site — the toolbar below keeps your place in the directory.

For IPv4, it is easy to create a rule that only accepts connections from hosts of the same subnet, for example (assuming my computer is 192.168.42.2 , and the incoming connection is 192.168.42.20 ): table ip firewall { chain incoming { type filter hook input priority 0; policy drop; ip saddr 192.168.42.0/24 tcp dport 8080 accept } } How does one do this for IPv6? I know there's always the…

Read on superuser.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.