sport >>
Web | Articles | News | Videos | Home
SPORT Web Results
 | linux - iptables error: unknown option --dport - Server Fault
First give a -p option like -p tcp or -p udp. Examples: iptables -A INPUT -p tcp --dport 22 -m state --state NEW -j DROP iptables -A INPUT -p udp --dport 53 --sport 1024:65535 -j ACCEPT You could also try -p all but I've never done that and don't find too much support for it in the examples.
|
 | What port should I open to allow remote desktop? - Server Fault
@BrianZ This is Windows 7/8/10 and to get there, just open Start Menu search for "Firewall" and click on "Advanced Settings" on the left-side panel, click on Inbound Rules on left-side panel and on the main panel find Remote Desktop - User Mode (TCP-In) and Remote Desktop - User Mode (UDP-In) and Allow edge traversal for both of them.
|
 | Route all traffic through Wireguard peer - Server Fault
I'm unable to comment due to too-low reputation, but I came across this post when trying to accomplish a similar goal. It's not entirely clear if the OP would prefer to keep local traffic local (i.e. accessing a network printer) or if the setup actually wishes to send ALL traffic to Wireguard. If trying to achieve the former, see How do I route all public traffic through Wireguard but not ...
|
 | linux - iptables blocking DNS - Server Fault
I think this would be solved if you added a -m state --state RELATED,ESTABLISHED -j ACCEPT rule to all the chains. It looks like you may be allowing DNS traffic in one direction only. Alternately, try rules with --sport 53 too.
|
|