0
votes
0answers
20 views

what is the --kerneltz in iptables command [closed]

I am using iptables for my project but facing some problem as follow. 1.in iptables 1.4.7 iptables -A INPUT -s 10.0.4.247 -m time --datestart 2013-5-16T12 --datestop 2013-5-16T16 -j DROP or ...
0
votes
0answers
15 views

Problems in creating rules in iptable [migrated]

Hello to all :) I need a little help with creating a rules. Im starting to learn iptables and firewalls but I have some questions. I need to allow HTTP communication only from PcA to PcB./ My code is: ...
0
votes
0answers
25 views

block specific udp packet with iptables

Is it possible to block specific udp packet using iptables? for example I want to block packet containing bd 65 like at line 3, that is a sequence number of RTP packet
-2
votes
0answers
13 views

Routing packets via Dual Gateway [closed]

I have a CentOS 6 server with 3 interfaces eth0 -> connected to LAN network eth1 -> connected to ISP router 1 -- default gateway eth2 -> connected to ISP router 2 While the default gateway ...
0
votes
1answer
56 views

how to duplicate all IP packets to another network interface [closed]

I have a machine which is the gateway of a subnetwork, and i want to analyze all packets going through it, eth0 is the interface used here. I already have a virtual TAP interface, and I need to find ...
-1
votes
1answer
151 views

linux iptables do snat on prerouting chain [closed]

i use the following iptables command to source-nat the in-comming package. iptables -t nat -A PREROUTING -s 172.23.160.148 -j SNAT --to 110.75.2.12 but the system tell me : iptables: Unknown error ...
0
votes
1answer
52 views

how to allow fragmented packets through firewall (ipv4/v6)?

is there a iptables rule that allows the fragmented ipv4/v6 packets? i searched in the web it shows that the fragmented packets doesn't contain the port number so the firewall simply drops the ...
1
vote
0answers
58 views

If DROP in iptables returns no error to host, why ping gets error message “sendmsg: Operation not permitted”? [closed]

I want my OS drops network packages silently, without awareness of application. I set following rules: # iptables -N NEW_CHAIN # iptables -A OUTPUT -d 10.211.55.6 -j NEW_CHAIN # iptables -A ...
2
votes
1answer
71 views

What's the best way to dump and drop network packets of a specific application?

I want to dump all of the network packets (IP packets) of a specific application, and then drop them (just like a dumb NIC), so that no packet actually goes through the NIC. All these are done without ...
0
votes
0answers
45 views

iptables forwarding

Ok, so I am terrible with iptables so I need some help. Here is what I am trying to do. I have a lan box on vlan 4 (172.16.9.65) I have another box on vlan 9 (10.1.0.1) My gateway for my ...
0
votes
1answer
48 views

understanding netfilter REDIRECT Target

just playing around with the netfilter REDIRECT-Target . i am wondering how the destination port is altered when using "--to-ports" (plural). iptables -I PREROUTING -t nat -i test -p TCP --dport 2800 ...
0
votes
0answers
22 views

How can I get the forwarded packet content when I am the Server using Iptables ? [closed]

Assuming i am the server providing LAN. And whenever clients access to the internet (Here is a website), it must be masqueraded to my public IP. So how can I get the content of that Packet (Maybe the ...
0
votes
0answers
114 views

iptables redirect not working for some packets

I'm trying to write a transparent proxy that creates jitter in the outgoing packets from a web server ran on my machine. I'm using the following command on Ubuntu 12.10 to redirect incoming traffic ...
0
votes
1answer
52 views

iptables: what is a chain?

I've been reading about iptables for hours and I still don't understand what is it that they're calling a "chain". I see this word everywhere in the doc and in tutorials and it's still fuzzy to me ...
3
votes
1answer
101 views

libipq performance issues

I am making a packet filtering program running on Ubuntu 12.04 which uses libipq as the library for copying packets into userspace. The logic of libipq works fine for me, my issue is that I have ...
2
votes
0answers
109 views

Forward traffic on specific address to external host with iptables? [closed]

I'd to forward all TCP traffic on port 25565 connected through the IP of xx.xx.xx.xx externally to yy.yy.yy.yy on port 25565. Essentially, xx.xx.xx.xx:25565 --> yy.yy.yy.yy:25565 It can't, ...
-1
votes
2answers
164 views

Linux: Loopback incoming packets on an interface

What is the best possible way to send packets coming on an interface back to the same interface without changing anything in the packet. I want to have a loopback effect for the actual traffic coming ...
0
votes
1answer
262 views

Netlink error while using IP queue

I seem to have an issue with IP queue. I have a linux machine that I am using to run some experiments. The linux machine is configured to be a router, having two NICs, connecting two other computers, ...
0
votes
1answer
81 views

iptables rules don't get restored

I have saved my iptables rules in /etc/network/iptables-rules. In the directory /etc/network/if-pre-up.d, I've created an executable with the command: " iptables-restore < ...
0
votes
1answer
35 views

iptables rules work only for me

I need to block this ip 188.43.64.80. iptables -A OUTPUT -p ALL -d 188.43.64.80 -j DROP This rule work for my local computer - i can't ping this ip. But it's not working for computers which ...
3
votes
1answer
443 views

How to make all outgoing RST drop

I am trying to drop all the outgoing RST and incoming RST on all ports. I am using Debian linux. I tried all possible combinations of commands listed on the internet but nothing seems to work. For ...
2
votes
1answer
315 views

using netcat for external loop-back test between two ports

I am writing a test script to exercise processor boards for a burn-in cycle during manufacturing. I would like to use netcat to transfer files from one process, out one Ethernet port and back into ...
1
vote
0answers
88 views

Squid proxy Configuration [closed]

HI I am new linux netowrking.I have a fedora system with squid installed.My iptables blocking me from accessing the squid proxy.How to configure my iptabels such that it will enable me to access the ...
1
vote
1answer
173 views

Prevent UDP forwarding

I've noticed my server is being used to relay UDP traffic as part of a DDOS. Various source IPs send UDP datagrams with TARGET_IP set as the destination. My server's IP is not TARGET_IP so I'm just ...
5
votes
1answer
77 views

Is it possible to accept and queue packet in iptables simultaneosly

I want to accept the packets and analyze them too. The packet should go to its intended application and a copy should also be available in queue
0
votes
0answers
132 views

Using iptables to forward traffic destined for specific ip via specific interface

I want to forward traffic destined for a specific ip from my internal network via a specific interface. I have two interfaces which are currently load balanced. I need all requests for a certain ip ...
0
votes
0answers
1k views

iptables configuration with openvpn

I have a network setup as depicted in the upper part of this figure: http://tinypic.com/r/k2zudg/6 All devices in the local network are connected to the router via Ethernet/WIFI, while the router ...
0
votes
1answer
984 views

how I can I set iptables to only allow certain mac addresses to connect to connect to a server

I am currently attempting to configure iptables to only allow certain mac addresses to connect it (this is a debian machine being used as a router) in order to provide a small level of protection to ...
0
votes
0answers
58 views

“error during nf_create_queue” when modifying l7.conf using l7-filter [closed]

I use Ubuntu 12.04 and installed l7-filter-userspace. When I ran the following command in a terminal: $ l7-filter -f /etc/l7.conf -q 0 -v error during nf_create_queue I get error during ...
0
votes
0answers
485 views

iptables allow MAC address range/wildcard [closed]

I'm trying to make a set of linux network devices only communicate among themselves and ignore other network traffic. They all share the same first-half of their MAC address, as in: AA:BB:CC:**:**:** ...
1
vote
1answer
210 views

iptables icmp Destination host unknown

I am testing how to cause java.net.NoRouteToHostException using iptables. configure server side like this: sudo iptables -A INPUT -s 10.13.185.66 -j DROP sudo iptables -A INPUT -s 10.13.185.66 -j ...
1
vote
2answers
320 views

Forwarding within local network to same network

I have X-Wrt based on OpenWrt 8.09 on my router I have home LAN of few computers on which I have some network servers (SVN, web, etc). For each of service I made forwarding on my router (Linksys ...
0
votes
0answers
211 views

iptables allow host access for mac address, and deny all rest

My script does not work: /sbin/iptables -A INPUT -p tcp -d 8.8.8.8 -j ACCEPT /sbin/iptables -A INPUT -p tcp -m mac --mac-source BC:AE:C5:CF:14:63 -j DROP
1
vote
0answers
437 views

Connecting Android Emulator to Remote System

I have 2 ubuntu systems A and B. A's IP addr is 192.168.0.5 B's IP addr is 192.168.0.3 System A runs Android Emulator. I have a TCP Client App which has to communicate with System B. Since the ...
1
vote
1answer
344 views

Android : forwarding of packets to an IP address

I have an Android device. I need to forward packets arriving at the external IP to an internal IP to which Android is connected to. I would like to know if I can write an App to enable this ...
-1
votes
1answer
127 views

How to filter Http/https req in network gateway ? without proxy setting

I want to filter all Http/Https in 192.168.1.1(wifiserver,Linux base) , and without proxy setting in 192.168.1.99(My PC) PC --> WiFi router --> LinuxServer(2 network adapter) --> ...
1
vote
1answer
161 views

How to block network trafic form outside network using iptable? [closed]

My network system ip is in range 192.168.211.0/24. I have a web server on 192.168.211.50. I want to receive packets only from 192.168.211.0/24 range to my web server. How can i configure this using ...
0
votes
2answers
727 views

Iptables or something to redirect IP in gateway (GNU/Linux)

Im writing a bash scripting to account traffic in my network server: WAN:eth1 -> GNU/Linux Server:eth0 -> Users The GNU/Linux server uses squid, bind, QoS, mysql, lighttpd. After an IP exceed the ...
0
votes
0answers
813 views

Ubuntu gateway port forwarding on two networks [closed]

I am trying to make a license server (w/ static IP) on network1 accessible for all clients in network2. Setup: I am using an ubuntu server as gateway between the two networks network1: 11.49.X.X ...
1
vote
1answer
461 views

Port forwarding to virtual machine qemu

I recently installed a Virtual Machine under Ubuntu 11.10, Right now I assume it is using nat and its internal address is 192.168.122.88. I have setup a web server in my virtual machine and I want ...
1
vote
1answer
306 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
0answers
350 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 ...
0
votes
0answers
108 views

iptables to disallow sending of “port closed” [closed]

I would like iptables to disallow the sending of a "port closed" (RST ACK) in the OUTPUT chain. I am not sure if this is correct: --append OUTPUT --protocol tcp --tcp-flags RST,ACK RST,ACK --jump ...
9
votes
1answer
3k 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) ...
0
votes
1answer
509 views

IP Masquerade/Forward on CentOS 5.5

I would like to be able to use my web server as a Usenet 'proxy', how would I configure iptables to forward the packets correctly? My Usenet client will connect to my web server and the web server ...
1
vote
2answers
646 views

How to limit port 80 to just one user with iptables

I want to limit port 80 so that only one user can use it. I want to do this with iptables I have not found any documentation on how to do this.
8
votes
4answers
13k views

iptables in android

Are IPtables inbuilt in android kernel? If they are, how to use them in our android application?
0
votes
1answer
327 views

IPTables Exam Questions [closed]

My prof has told me that our final exam will contain a couple questions on IPTables. This is the first networking class offered at out university, but it is also a third year class. I am wondering if ...
0
votes
1answer
92 views

what does this script do?

I don't know much about Ruby and I need to understand what this script does. I know it calls ebtables to add rules that configure networks for Virtual machines. But I'm not sure how? this is the ...
0
votes
3answers
827 views

Allow outgoing connections using 'iptables'

Greeting all, "iptables -L" gives the following output [root@ibmd ~]# iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ...

1 2