Tagged Questions

Iptables is used to set up, maintain, and inspect the tables of IP packet filter rules in the Linux kernel.

learn more… | top users | synonyms

34
votes
9answers
18k 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 exactly what I want: ...
7
votes
6answers
5k 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've come to a solution ...
6
votes
1answer
2k views

Python port forwarding/multiplexing server

I would like to make server that listen on UDP port 162 (SNMP trap) and then forwards this traffic to multiple clients. Also important is that the source port & address stays same (address ...
6
votes
2answers
2k 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 support generic ...
5
votes
1answer
901 views

Is there a python interface to iptables?

Im trying to retrieve the current iptables chains configured on the system via python. If I strace the iptables command, it outputs: strace iptables -L INPUT socket(PF_INET, SOCK_RAW, IPPROTO_RAW) ...
5
votes
2answers
214 views

Prevention from entire website downloading?

There is one IP (from China) which is trying to download my entire website. It downloads all my pages and loads the server significantly (I have more than 500 000 pages). Looking at the access logs I ...
5
votes
6answers
8k views

Using iptables to change a destination port

Is it possible to change the destination port of a UDP packet using iptables? I'm trying to get an SNMP agent to send out traps on 1620 instead of 162. Unfortunately so far I've only managed to ...
4
votes
1answer
46 views

bash scripting: catching errors from a block of statements

I have a large iptables ruleset that I manage with my own bash script. Most of the commands in the script are simple, single-statment iptables commands. I am trying to improve the script by adding ...
4
votes
5answers
328 views

linux: suspend process at startup

I would like to spawn a process suspended, possibly in the context of another user (e.g. via sudo -u ...), set up some iptables rules for the spawned process, continue running the process, and remove ...
4
votes
4answers
4k views

iptables in android

is iptables inbuilt in android kernel?? if they are, how to use them in an android application?
4
votes
2answers
875 views

REDIRECT a port in ip6tables

How can I redirect one port to another local port by using ip6tables ? e.g. something like this : ip6tables -t nat -A PREROUTING -j REDIRECT -p tcp --dport 443 --to-ports 8443
4
votes
1answer
4k views

List of Loaded iptables Modules

Is there any convenient way to show loaded iptables module list? I can show installed modules by listing /lib/iptables/ (or /lib64/iptables/) directory but I need active module list.
3
votes
1answer
123 views

Trouble setting up a Transparent TCP Proxy on Android/Linux

I am trying to set up a transparent TCP proxy on Android for my dissertation, but am having some issues. I am using software that I found on this site - http://en.dfr.ch/free-software/java-tcp-proxy - ...
3
votes
1answer
112 views

Why does my service always bind to ipv6 localhost instead of ipv4?

I have a service that creates a ServerSocket and binds to localhost:7060. When I did "netstat -an" on my android device, I see it is using ipV6 localhost instead of ipv4 localhost interface. The ...
3
votes
2answers
363 views

How to get original destination port of redirected UDP message?

Using this thing I can obtain original destination IP address of socket(PF_INET, SOCK_DGRAM, 0) socket. How to get original destination port?
3
votes
7answers
601 views

Linux per program firewall similar to windows and mac counterparts

Is it possible to create GUI firewall that works as Windows and Mac counterparts? Per program basis. Popup notification window when specific program want to send\recv data from network. If no, than ...
3
votes
3answers
2k views

Linux iptables TRIGGER target description

I'm writing application which controls Linux firewall (using iptables). I need to implement some port triggering. There is TRIGGER target which seems to be suitable for it. However, I can't find good ...
2
votes
1answer
159 views

Is that possible to add two different default gateways into the routing table for two different NICs in android?

By default, the packets of default connection will use eth0 to go out/in. The default gateway in the routing table is eth0's gw ip. When another interface said eth1 is up, I want to add another ...
2
votes
1answer
116 views

Managing IPTables with API pref. php

Hey guys is there an API so I can manage IPTables with PHP, it's for a project to build a router with a browser login, kinda the same as a Fonera. Any thoughts are welcome.
2
votes
2answers
146 views

How to read tcp packets, which have been redirected to localhost?

I use iptables (PREROUTING) to redirect all TCP Traffic to a local port. Now I want to capture these packets using a C program. I tried lots of socket variations (UDP / TCP / ...) but I cannot make a ...
2
votes
1answer
873 views

Trying to connect to remote MySQL host (error 2003)

I have a MySQL instance running on a Debian server and I can connect to it locally with no problems. However, I am unable to connect to it remotely. When I try this from my command line I get the ...
2
votes
4answers
831 views

How to set Robots.txt or Apache to allow crawlers only at certain hours?

As traffic is distributed unevenly over 24 hours, I would like to disallow crawlers during peek hours and allow them at non-busy hours. Is there a method to achieve this? edit: thanks for all the ...
2
votes
1answer
2k views

how to use iptables in an android application

how to use iptables in an android application. i am also not sure whether iptables are available in the android kernel. so how to perform the iptables functionality. i need this for firewall like ...
2
votes
1answer
510 views

create iptables rule per process/service

is it possible to use iptables in order to permit traffic initiated by a "process", ie using the process name? I would like for example to allow everything that is initiated by ping command.
2
votes
1answer
173 views

How to reinject the packet in the Iptables?

I have a packet inside a packet a.k.a tunneling. So it's of the form [IP HEADER 1][IP HEADER 2][PAYLOAD]. After reading the first header(done by a library) I will get the packet with [ IP HEADER 2] at ...
2
votes
2answers
622 views

Converting subnet mask “/” notation to Cisco 0.0.0.0 standard

I've searched SO for help but could'nt find a answer to my question. Situation: I need to convert a "/NN" subnet mask notation (think IPTABLES) to a 0.0.0.0 cisco notation. NN are the number of "1" ...
2
votes
1answer
1k views

Amazon EC2 Load Balancer: Defending against DoS attack?

We usually blacklist IPs address with iptables. But in Amazon EC2, if a connection goes through the Elastic Load Balancer, the remote address will be replaced by the load balancer's address, rendering ...
2
votes
2answers
1k views

iptables and libpcap

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/, what should be the iptable ...
2
votes
1answer
2k views

Why doesn't my iptables entries block pinging a Xen virtual machine?

I'm writing a bash script to add simple firewalling for Xen. Here's the actual firewall configuration : Chain INPUT (policy ACCEPT) target prot opt source destination ...
2
votes
2answers
2k 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., to it. My question ...
2
votes
1answer
477 views

SNMP payload address translation

I'm using iptables under linux to NAT SNMP traffic. Some of the SNMP packets have VARBINDs that contain the (real) IP addresses of the devices that generated them. This confuses standard management ...
2
votes
2answers
2k views

How can I open a port in iptables for RMI access

I'm trying to connect from my Java application to a development server that has port 8088 closed which is used for RMI. I appreciate any help on how to open that port.
1
vote
1answer
34 views

Unable to get to node.js externally

I've looked everywhere for an answer on this, but haven't had any luck. I've installed node.js on my server. I've created the standard "Hello World" example like: var http = require('http'); ...
1
vote
0answers
47 views

Calling libiptc API from a separate thread in a C program throws segmentation fault

I am working on performing iptables update through a custom c program using libiptc. The requirement is to invoke iptc APIs from a separate thread every 2 seconds. I have written a simple C program ...
1
vote
2answers
167 views

Redis or Mongo for determining if a number falls within ranges?

I need a way to quickly check if an IP address falls into one of many forbidden IP ranges. I currently use iptables to check if the IP falls into a specified range. This works fine for several ...
1
vote
4answers
53 views

How to programmatically access iptables?

Is there a way we can query iptables programmatically without making use of shell script? I don't have liberty of using shell script to run iptables command and grep output. Is there a native (API) ...
1
vote
1answer
56 views

is it possible sending data via NIC directly instead of via routing table lookup (linux command or python)

Suppose I have 3 NIC in one host PC, name them eth0, eth1 and eth2 All interface have it's own ip address in different subnet, however, all the gateway router of those NIC have route to one server I ...
1
vote
3answers
76 views

NodeJS server not accessible from outside

I deployed a nodejs server in Rackspace and can be accessed internally, like using: curl http://127.0.0.1:8080 However, it can't be accessed from the outside (the internet) even if I do this: ...
1
vote
1answer
64 views

How to Deny/Blacklist Unauthorized IP Write Access Attempts on LAMP Server?

Recently, Spammers found world-writable folders (such as those needed by certain wordpress plugins) and uploaded rogue .htaccess/.php files to use my (Ubuntu Linux 11.04) unmanaged VPS (Linode) as a ...
1
vote
1answer
68 views

SSH Connection Lost [closed]

I have recently started using iptables, and I executed iptables -F without knowledge of what it might do. And suddenly I have lost connection to the node. I can't even ping the node. Any help would be ...
1
vote
2answers
130 views

iptables block access to port 8000 except from IP address

I've never used iptables, and the documentation online seems a bit opaque. I'd like to block all requests to port 8000 on my server except those coming from a specific IP address. How do I do that ...
1
vote
1answer
133 views

Why am I getting extra bits in my recv() calls with libnfqueue?

I'm having problems with the following code. I receive my data with no problems, however that data is loaded with extraneous bits! For example, the following code grabs all traffic directed to it from ...
1
vote
0answers
186 views

physical to virtual (kvm) migration with saving IP of guest and reusing it at host [closed]

I do a physical-to-virtual migration of BSD server with saving of IP address. The virtual host is Linux/KVM. The setting is: I had a physical BSD server with failed Hardware. I just replaced it with ...
1
vote
0answers
219 views

Running iptables on a rooted xoom (android 3 honeycomb)

I am trying to add some rules to filter network traffic from/to the device (Xoom WiFi) using iptables. The iptables command is located at /system/bin/iptables in the xoom device running android 3.0.1. ...
1
vote
1answer
91 views

redirecting TCP stream to another client

I have a TCP server that only allows a few clients to connect to it. However the data transfer is purely unidirectional -- the server sends all the data to the client and the clients little to no data ...
1
vote
0answers
166 views

iptables redirect -> address in use? [closed]

I'm running a Tornado server on a random port (e.g. 22000) on Ubuntu 10.04 and ,want to redirect incoming port 80 requests to it. I've read that something like this will accomplish the task: sudo ...
1
vote
0answers
139 views

Iptables: how to easily group rules in chain?

I have some netfilter rules like this: iptables -I INPUT -j NFQUEUE -p udp --dport 4444 iptables -t mangle -I INPUT -j MARK --set-mark 100 -p udp --dport 4444 iptables -I OUTPUT -j NFQUEUE -p udp ...
1
vote
5answers
581 views

Accessing a mysql database from external host/ip? (ie: mysql workbench)

I have a mysql server running on x.x.x.x, and can access it internally no problem (of course). However when attempting to connect externally, ie using mysql workbench, or even from an external server, ...
1
vote
2answers
248 views

Access RMI Port from remote using iptables

I want to access an RMI-Service from a remote Server. Locally everything works fine. But from the remote side i get the following exception: java.net.ConnectException: Connection timed out I ...
1
vote
1answer
806 views

iptables error in android: iptables-save and iptables-restore not working

I have compiled Linux for android emulator with full netfilter functionality enabled. And got a iptables binary after building android from source. When i push this binary to the emulator i can ...

1 2 3 4