7
votes
8answers
2k views
Is there a way for non-root processes to bind to “privileged” ports (<1024) on Linux?
It's very annoying to have this limitation on my development box, when there won't ever be any users other than me.
I'm aware of the standard workarounds, but none of them do exac …
0
votes
2answers
14 views
iptables ACL question
hi,
how do I drop all traffic to smtp, except originating from my IP? This example I found drops traffic for particular IP, I need to deny by default, but allow 1 IP in. Thanks
# …
0
votes
0answers
41 views
iptables: matching multiple ip addresses [closed]
Hi guys,
I am working on a iptables rule to apply after my shorewall script has initialized my firewall. I want a spicific IP (10.0.1.19) address in my lan to be redirected to 10. …
0
votes
2answers
588 views
NAT GRE (IP protocol 47) over Linux router
I have a host that has a permanent static GRE tunnel to a server on the Internet. Right now the host has its own real IP address. I want to put the host behind a Linux box (Smoothw …
2
votes
2answers
596 views
Best way to redirect image requests to a different webserver?
I am trying to reduce the load on my webservers by adding an "Image server" (a dedicated server for handling image requests), and redirecting all requests for .gif,.jpg,.png etc., …
0
votes
0answers
28 views
NAT and iptables [closed]
Hi
I am new to iptables and NAT. But I am working on it through various material both in online and books. I have a doubt regarding NAT implementation using iptables.
Let us su …
3
votes
7answers
1k views
How can I programatically manage iptables rules on the fly?
I need to query existing rules, as well as being able to easily add and delete rules. I haven't found any APIs for doing this, is there something that I'm missing?
The closest I'v …
0
votes
1answer
15 views
priorities upload priority to give high priority to slingbox using htb qdiscs
I am trying to set slingbox connection to class 1:20 using the following commands:
iptables -t mangle -A to-cable -p tcp --dport 5001 -j CLASSIFY --set-class 1:20
iptables -t ma …
1
vote
1answer
38 views
iptables - how to set class by ip address instead of port ?
i want to set a specific class to any packets that come from a specific computer in my network using --set-class, how can i achieve that ?
2
votes
2answers
344 views
Packet mangling utilities besides iptables?
I'm looking for a linux utility that can alter the payloads of network packets based on a set of rules. Ideally, I'd use iptables and the netfilter kernel module, but they don't s …
0
votes
0answers
47 views
Iptables exceptions not working [closed]
I want to setup a firewall with iptables but it keeps blocking things I don't want blocked :(
After I add my exceptions and do:
iptables -A INPUT -j DROP
I can't run:
curl www.wh …
0
votes
1answer
177 views
sip phones unable to register with SIPXECS server 4.0.0
sip phones unable to register with SIPXECS server 4.0.0
I made a wireshark trace and can see that the sip phone sends the register message to the 5060 port and the server send an …
0
votes
1answer
252 views
How do you port forward from a vpn connection with ddwrt?
I have a ddwrt router v24 and build something or other. I can connect to my vpn with it, gives me an ip without a problem (192.168.10.200). I would like to port forward 8080/tcp fr …
2
votes
2answers
198 views
iptables and libpcap
hi,
i have rule set up to drop udp/tcp packets with matching strings. however, my program which captures packet using libpcap, is still able to see this packet.
Why is this/, wha …
0
votes
1answer
151 views
Dropping packets with matching string uisng iptables drops all the subsequent packets with no match
hi,
I am trying to write a worm filtering utility on application layer.
i have setup following rule to drop tcp packet with specific substring.
iptables -A INPUT -p tcp -m string …
