Iptables is used to set up, maintain, and inspect the tables of IP packet filter rules in the Linux kernel.
0
votes
1answer
120 views
Writing bash code for performance standards
Is there a better way to rewrite this code to get enhanced performance?
If you were to get a bunch of IPs the system seems to hang.
TMP_PREFIX='/tmp/synd'
TMP_FILE="mktemp $TMP_PREFIX.XXXXXXXX"
...
0
votes
0answers
239 views
Find out what blocks incoming connections on any Linux machine / open ports
Sometimes I log in to a machine of one client and I cannot receive incoming connections on some ports.
In Windows besides the Windows firewall a user could have installed a firewall program, or there ...
0
votes
3answers
143 views
Executing command line commands on a remote server
I have a server running HAProxy, and would like to change iptables on that server in order to preform some maintenance on my app servers. What would be the easiest way to do this? Is there a way I ...
0
votes
1answer
397 views
How to open port 2195 in iptables centos cpanel 11
Please help me. how to add 2195 port in iptables ...centos server and cpanel 11 installed.
1
vote
3answers
47 views
Is it possible to see what is in header/packet using libpcap in case of https protocol
I am using iptables string match + libnetfilter_queue library to monitor http requests and responses. But later on I realized that string match fails in case of https protocol as iptable captures ...
1
vote
0answers
436 views
OpenVPN server can't ping clients [closed]
I finally got my Debian openVPN to work, now the clients can ping the server (TAP is used), but the server cant ping the clients.
I did a trace with wireshark on a client, and I could see the ...
0
votes
1answer
151 views
How to extract source and destination port number from packet in queue of iptables
I am using libnetfilter_queue library. But i couldn't figure out a way to extract port number in the call back function. I am bit new. A detailed help will be highly appreciated!
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 ...
0
votes
1answer
77 views
There is no NF_REJECT verdict in libnetfilter_queue
libnetfilter_queue seems to support only two verdicts: NF_ACCEPT and NF_DROP . Is there any work around for NF_REJECT.
0
votes
0answers
34 views
Is it possible to figure out which http request generated the corresponding response
I am using iptables and libnetfilter_queue library to listen to tcp (http) packets. I am filtering out INPUT responses containing a matching string in the http header. Is it possible to know which ...
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 ...
0
votes
0answers
166 views
IPTables rules to Deny ALL traffic for an IP range with CRON
I currently have a ClearOS gateway server in transparent proxy mode. It has a lot of great tools but I have some issues preventing me from forcing the use of the web proxy directly which would give ...
0
votes
1answer
183 views
Blocking web bots with iptables
I am trying to block web bots that open up numerous connections within a short period of time. I am using this syntax:
-A INPUT -p tcp --dport 80 -m state --state NEW -m recent --set
-A INPUT -p tcp ...
0
votes
1answer
181 views
How to extract payload from packet in queue of iptables
I am using libnetfilter_queue library. But i couldn't figure out a way to extract payload in the call back function. I am bit new. A detailed help will be highly appreciated! Actually i further wish ...
0
votes
1answer
84 views
FTP Disturbing NAT Server Connection
It's a very strange problem. I have a Ubuntu 12.04 server A with KVM (Kernel Virtual Machine), proftpd and MySQL installed and UFW configured. An guest Ubuntu 12.04 B with OpenVPN and phpMyAdmin ...
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
128 views
Is it possible to analyse http headers using iptables (libnetfilter_queue) library
What i want to do is that, analyze the header of packet with protocol http. I want to filter packets based on mime types (or any other value ) contained in their http headers. Is it possible at all!
0
votes
0answers
114 views
Cannot disable iptables redirect [closed]
I have tomcat running on port 8080 and I setup iptables to redirect traffic on port 80 to 8080 like this
sudo iptables -I INPUT 1 -p tcp --dport 8080 -j ACCEPT
sudo iptables -I INPUT 1 -p tcp --dport ...
2
votes
1answer
157 views
What is best way to develop iptables module
I've iptv provider, that deliver video via encrypted with private key udp multicast traffic.
This time stream decoded with patched version of udp2http proxy. I want to develop iptables module to ...
0
votes
0answers
131 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
980 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
284 views
IPTables adding new rule syntax [closed]
I have attempted to follow the instructions at:
http://d4forg.blogspot.co.uk/2012/01/detect-and-block-synfloods.html
which outlines two commands to run on the server:
iptables -I INPUT -p tcp -m ...
0
votes
3answers
90 views
Browser's Redirection
I'm writing an internet access tool for a LAN that uses Linux + iptables to redirect to a login page everytime a user tries to access to any web page. That login page asks for user and password and if ...
0
votes
1answer
94 views
iptables and modules priority
I am still wondering which comes in the first priority. "Iptables" or "Kernel Modules"
With the help ip iptables, say
iptables -t mangle -A PREROUTING -p tcp --dport 80 -j thoTPROXY --tproxy-mark ...
1
vote
1answer
155 views
Iptables rules validation
I have a perl script that generates a shell script that will later be loaded by iptables on a remote machine. The data input for the perl script comes from a config file, where I can specify all kind ...
0
votes
0answers
73 views
Multicast over a mesh network
I am operating a 2-node mesh network using Pandaboards as routers. eth0 (wired Ethernet) and wlan1 (wireless ad-hoc) are connecting the two Pandaboards and wlan0 is set as the access point. An Android ...
0
votes
2answers
314 views
linux route specific machine traffic throw specific output interface [closed]
I have a linux machine Iam using as a router with multible interfaces and multible internet connection
say eth0--isp1
eth1--isp2
eth2--isp3
the gateway is eth0 throw isp1
and eth3--local1 ...
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
1answer
651 views
Script to Block and Unblock a Port
root@node2:~# iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination
DROP tcp -- anywhere anywhere multiport dports ...
0
votes
1answer
206 views
How to block Amazon EC2 but yet allow Pinterest? What are the Pinterest IP ranges? [closed]
I cannot get anything but a canned answer out of Pinterest, they do not seem to publish their public outgoing IP ranges from Amazon EC2?
We need to block Amazon EC2 on our servers because of their ...
0
votes
1answer
136 views
Connecting to at-home server from web
I have a CentOS server at home that I'm trying to put a website on. I put the index.html in the /var/www/html/ folder and can access it from another computer on the local network (with ...
0
votes
2answers
325 views
Dynamic firewall rules or iptables API for Ubuntu 12?
I have a firewalled server (in this case, Redis, but this probably isn't central to my question.) I want to lock down access to only certain IP addresses -- a variable, changing set of worker Amazon ...
0
votes
3answers
718 views
Outgoing connections from dedicated server denied with iptables shut off
I have a peculiar problem with my dedicated webserver. It's running CentOS and uses PLESK for administration through web.
I noticed the problem in the title when trying to update plugins in wordpress ...
1
vote
0answers
173 views
Proxy Arp and 1:1 nat
I have a linux router with 2 nics doing masquerade from network 192.168.0.0/24 to an ADSL router.
users <----> NIC A [router] NIC B <----> INTERNET
Now I'm experimenting with proxy arp on the ...
0
votes
1answer
74 views
Prevent cross site file uploads onto my server?
Is there a way to a FILE upload to my site from other websites?
I have a form that takes semi-large video files and authenticates with tokens after the form is submitted on client and serverside. ...
-2
votes
1answer
611 views
Centos/fedora/amazon linux: iptables best practice
I tried to stick with one flavor of linux, but have somehow gotten into CentOs, Fedora and Amazon Linux mix. (Amazon linux is lowest priority as it has its own firewall thru console)
Goal: Configure ...
0
votes
1answer
93 views
How to forward calls from my remote host to my local one
I wish all calls to my_remote_host:port to be redirected to my_local_host:port, where my remote host is Linux and my local host is Windwos
0
votes
3answers
787 views
Remote debugging - how to create a port proxy?
I'm trying to access remote debugging port running on box A (Debian) from box B (Windows). On box A I'm running Chrome with --remote-debugging-port=9222 flag and I can see that it works correctly (I ...
0
votes
1answer
264 views
how to block a URL using Iptables or Ebtables [closed]
I want to block particular website from accessing my machine. How can I do this using iptables or ebtables?
1
vote
1answer
1k views
The “definition” of iptables NEW STATE
The test environment is:
2 Operating Systems ubuntu server 10.04 installed on VirtualBox
iptables v1.4.4
ip_conntrack module loaded
these are my test rules:
$IPTABLES -A INPUT -p TCP -m state ...
0
votes
0answers
258 views
how to redirect using socket programing
Below is the code I'm using to execute a binary which occupy a port(example 8080).
#include <fcntl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
...
0
votes
0answers
152 views
TCP RST and FIN don't reach the iptables firewall [closed]
I'm using this iptables rule to log packets that don't have the syn flag set.
iptables -A INPUT -p TCP --tcp-flags SYN NONE \
-m state --state NEW -j LOG --log-prefix "[-IPT-]New not syn:"
...
0
votes
1answer
106 views
Redirect to a PORT
I'm redirecting the clients who are all connected to my router to another port(say 8080) using iptables
iptables -t nat -A PREROUTING -p tcp -j REDIRECT --to-port 8080
I'm running executing a ...
0
votes
0answers
526 views
How to use iptables with ipset? [closed]
ipset -N ban_src hash:ip
ipset -A ban_src 192.168.10.11
ipset -N ban_dst hash:ip,port
ipset -A ban_dst 192.168.10.12,80
iptables -I INPUT -p tcp -m set --match-set ban_src src -m set --match-set ...
0
votes
0answers
72 views
Proxy for one application
Is it possible to set a proxy for only one Android app? I'm not looking for an app, that can do this, but I want to implement it in my own app (that uses root privileges ofc). For example, user ...
0
votes
1answer
236 views
using iptables to redirect a tcp service
I am trying to setup a proxy to redirect a tcp service to a target server which I don't want it to be accessed directly by some people. Both proxy and target servers are on internet(not in my local ...
0
votes
1answer
266 views
how to execute a shell script when an ebtables rules match?
I want to execute a shell script when particular ebtables rules match. The Script should get the MAC address of the client and the interface in which the client is connected. how can I achieve this?.
0
votes
1answer
86 views
how to send the reqursted MAC address as a argument while redirect to a URL using Iptables?
I want to redirect the clients to different URL. I have done this using port redirection. But Now I want the MAC address of the client as a argument for the URL. How can I get the MAC address and send ...
0
votes
0answers
129 views
pktgen packets donot pass through the default gateway [closed]
I have a topology in which:
On one end, there is a Linux machine 1 having IP Address 192.168.100.3.
Linux machine 2 has two virtual interfaces:
eth0 (IP: 10.10.10.4)
eth1 (IP: 192.168.100.10)
...