About 53 results
Open links in new tab
  1. Wichita Sports Forum | Indoor Sports & Adventure

    Wichita's largest indoor sports and adventure facility. Trampolines, basketball, volleyball, parties and events all under one roof.

  2. 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 …

  3. What port should I open to allow remote desktop? - Server Fault

    Dec 4, 2015 · @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 …

  4. What is the correct way to open a range of ports in iptables

    What you've been told is right, although you've written it wrong (you've forgotten --dport). iptables -A INPUT -p tcp --dport 1000:2000 will open up inbound traffic to TCP ports 1000 to 2000 inclusive. -m …

  5. ubuntu - Iptables allow DNS resolution - Server Fault

    Jan 11, 2023 · At first glance you're only allowing DNS responses to be received and don't create any DNS related rules in the OUTPUT chain to actually allow sending DNS queries out. You current …

  6. How to match port range using u32 filter - Server Fault

    Feb 6, 2011 · with "u32 match ip sport 80" in Linux tc I can match port 80, but how can I match a port range 10000 - 20000 ?

  7. Route all traffic through Wireguard peer - Server Fault

    Aug 16, 2021 · 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. …

  8. nat - iptables: How to forward UDP and TCP port to server behind ...

    Mar 5, 2023 · See your rule table to understand how the outgoing packets are routed at the home server. wg-quick will add some rules. ip rule show For me, I had to remove some rules generated by …

  9. linux - nftables rules can't ping to other server - Server Fault

    Jan 25, 2024 · This can't be fixed with a stateless firewall without voiding the security the firewall is supposed to provide. One can't just add: udp sport 53 accept + tcp sport { 53, 443 } accept to allow …

  10. linux - How can I port forward with iptables? - Server Fault

    How about this: I'm a programmer trying to set up an environment so I can debug my server application in eclipse being called from the innernet. Close enough?