Iptables is used to set up, maintain, and inspect the tables of IP packet filter rules in the Linux kernel.
-1
votes
0answers
13 views
how to drop idle connection with iptables or linux [closed]
How to drop idle connection with iptables or whatever tools used to do the job.
im building captive portal, i want to drop the connection or the session if idle.
Thanks.
Hadi.
0
votes
0answers
11 views
IPConfig rule with both mac address and to specific destination IP Address
I'm trying to add a rule where if the traffic is from MAC Address 12:34:56:78:90:AB and to 1.2.3.4 to target NETMON
I've tried
iptables -t nat -I PREROUTING -m mac --mac-source 12:34:56:78:90:AB -d ...
4
votes
7answers
11k 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, ...
-2
votes
0answers
11 views
Iptables allow Port: 123 - CentOS [closed]
How is it possible to allow the port 123 for incoming requests in my iptables file?
I'm using CentOs 5. I have already tried to edit the iptables file, but it always said some error.
Can anyone ...
-1
votes
0answers
18 views
hope soemone can help on Iptable questions [closed]
I have this kind of setup for iptables
root@bt:~# iptables -L -n
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ...
0
votes
1answer
19 views
IP Tables in Red Hat Linux how to set a forwarding
I have configured the ip tables to forward which comes in to 80 port and it have to forward in to another ip. But it's not working. I have use the following rule in the ip tables.
-A FORWARD -i bond0 ...
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
1answer
44 views
How to drop IP packets received on the default route interface when no other than default route is found?
I am setting up a router based on a linux kernel. As expected, ipv4 packets received on the interface used by default route are sent back to the same interface in case no other route is found.
Is ...
-1
votes
1answer
28 views
Linux: forward incoming connections from subdomain to port? [closed]
I'm currently running two minecraft servers on the same computer, and would like two separate subdomains so people don't have to connect to one with domain.com:25566.
The solution I can see to this, ...
0
votes
1answer
16 views
iptable for port forwarding
I want to redirect all trafic coming to my Linux (192.168.1.34) on the port 22 to another address
So I used the following iptable command
sudo iptables -t nat -A PREROUTING -p tcp --dport 22 -j DNAT ...
-1
votes
0answers
36 views
Apache server reached MaxClients setting [closed]
I'm using Apache/2.2.15 (Unix) in CentOS release 6.3 (Final) 2.6.32-279.1.1.el6.x86_64.
I have some HTTP requests from specific referer with diferrent ip adresses and i want to block these requests ...
61
votes
11answers
41k 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:
...
0
votes
0answers
22 views
IPTable Routing - Why output doesn't have any affect?
I'm confused over why my iptables are behaving like this. I'm attempting to block port 25 from PPTP VPN users.
Most of the guides online mention blocking port 25 in the output chain to block SMTP.
...
0
votes
0answers
34 views
iptables moving rule in a list
i have 2 rules of iptables
iptables -A INPUT -s 5.5.5.5 -j DROP
iptables -A INPUT -s 6.5.5.5 -j ACCEPT
is there a function or a command that will swap the rules to be like this:
iptables -A INPUT ...
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
1answer
20 views
Number of packets ordered by IP [closed]
My server is currently under a small DOS attack. I would like to know if there is an easy way to get the list of IPs sending packets to my server, ordered by the number of packet they sent, on a ...
0
votes
1answer
39 views
Undefined symbol “afinfo” when importing python-iptables package “iptc”
I am trying to utilize the python-iptables package to list iptables rules in a web app. When I add the iptc package to my environment, I get the below error. I used yum 'provides' to find where the ...
-3
votes
0answers
20 views
Python ip forwarding [closed]
I have to develop a program in python that will run in a linux device. That device have to sniff all the input connection on eth0 and insert delay on the input stream forwarding it to eth1.
Can you ...
0
votes
0answers
23 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
0
votes
0answers
21 views
How do I route a port range in a linux host to a guest VM? [migrated]
I am trying to redirect a certain port range in a linux host to one of its guest VMs. I would like for this redirection to apply to all the host's interfaces, including localhost. I was able to do:
...
-1
votes
1answer
31 views
Iptables rules blocking everything [closed]
my IPTables rules are blocking my servers connect to external http server and mysql. I want to block all input connections, just let SSH, and allow only some output ports, since its a proxy server.
[
...
0
votes
0answers
13 views
Filter packets using packet size in Ubuntu
I need to filter a protocol (ideally using iptables) that is detected using the sizes of the first piece of data sent and the first piece of data received.
This is the logic:
if (sentSize1 >= 50 ...
0
votes
1answer
19 views
TCP DF packets get block though in IPTABLES the required port is allowed by rule
The rule is added to accept on Port 10000 as:
iptables -I INPUT 5 -i eth0 -p tcp --dport 10000 -j ACCEPT
But the packet to 10000 port is blocked by ipatables with this log:
packet-droppedIN=eth0 ...
7
votes
1answer
837 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 ...
0
votes
2answers
43 views
How does nfq_get_payload structure its return data?
Primarily, I'm trying to get the source address and dest port from the payload of a Netfilter queue payload (The payload is retrieved using the nfq_get_payload function). The following question asks ...
-1
votes
0answers
14 views
log output VPN traffic with iptables [closed]
I'm using pptpd on Ubuntu 10.04 to allow users to connect and route their traffic through my servers. However because a single external IP is shared with multiple users I need a log of all connections ...
-1
votes
1answer
1k views
IPTables/Route and multiple interfaces configuration
I've this scenario, a Debian box running with multiple network cards:
eth0 - Internet Connection via local Router (172.20.1.x , 255.255.255.0)
ppp0 - Dial-up to a network without internet (10.x.x.x ...
0
votes
0answers
5 views
Bad informations from destination port
I wrote a kernel module which retrieves information from the package through the monitoring interface (pc B ubuntu), exp : I started a web page (from pc A), normally the destination port is '80 ', by ...
-1
votes
2answers
26 views
How to use iptables exclamation in linux [closed]
Hi I want to ask how can I block a single www using just one command and '!' mark. With that I want to settle the following entry: ACCEPT ALL but NOT www.somewww.com
I have tried:
iptables -A OUTPUT ...
1
vote
0answers
28 views
Paket injection, filtering and mangling WITHOUT netfilter (avoiding GPL)?
I'll have to do packet inspection, mangling, dropping and injection of packets on a Linux system. Ideally, this would be in user space and on IP packets and Ethernet frames, too.
Unfortunately, i ...
0
votes
0answers
16 views
Unable to communicate with Iono
While access the site I got Unable to communicate with Iono.
When I check the developer they told that ip address ... is blocking the firewall.
I contacted the hosting provider and they you need to ...
0
votes
0answers
14 views
make external computer in linux virtual machine
I am working on IPtables rules for linux on virtual machine. Actually I have no good experience on that.
I'm using Fedora, I create two virtual machine one for the firewall's rules and the other one ...
0
votes
1answer
18 views
recaptcha not showing on centos server
I use recaptcha for one of my pages. When deployed locally everything is working fine, but when deployed to the CentOS server the image is not rendered. I have the following in my application:
...
-2
votes
0answers
12 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
0answers
116 views
iptables postrouting change source IP address based on destination port [closed]
I want to change the source address based on destination port/protocol criteria, I've come up with a config so far but it seems to not working. On my interface eth1 I have the IP address x.x.x.4 and I ...
0
votes
0answers
32 views
Ubuntu port forwarding to tap interface
I would migrate my webserver into a Qemu-VM that works, but i can only access the server with its local ip. So i would to forward a port from my Static Internet IP to the VM. My setup:
TAP Interface ...
0
votes
1answer
26 views
iptables 4.12 IP not found: BASH function $line issue
While creating a simple script that grabs a blacklist of ip addresses and blocks them, I came across this issue:
## Function giving greif
function _droplist (){
while read line; do
$IPT ...
0
votes
0answers
80 views
Changing the incoming interface of the packet using iptables MARK and ip route commands
I was trying to change the incoming interface of the packet using iptables MARK and ip route commands.
I have tried this approach which suggests the use of iptable Mark and iproute2 utilities instead ...
0
votes
0answers
10 views
redirect traffic from 2 Ubuntu external NICs to specific internal hosts [migrated]
I am having problems redirecting incoming traffic to 2 external facing interfaces on my Ubuntu 12.10 server to 2 separate internal hosts. I am able to redirect incoming traffic on my eth0 just fine to ...
-2
votes
0answers
83 views
IPtables rule to open tftp port still blocking the tftp communication [closed]
I have added this rules to iptables in my device.
iptables -I INPUT 1 -i eth0 -p udp --dport 69 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -I INPUT 2 -j DROP
when i tried to download a ...
1
vote
1answer
121 views
ANDROID : IPTABLES how to block application making internet connection
There does not seem to be any information on this topic.
I would like to find how I can use IPTABLES in Android to block an application making a connection.
So far I have:
1) Recompiled the ...
-1
votes
0answers
29 views
Older linux kernel and iptables [closed]
I have a virtual server instance (OpenVZ) and I have need of adding a rule to iptables that will block udp packets sent with a certain hex-string in them (it's an srcds server of an old game that was ...
0
votes
0answers
52 views
Using netsh advfirewall to block URLs in Windows
I know that Windows allow blocking IP addresses through netsh like so:
netsh advfirewall firewall add rule name="Block some stuff" dir=in action=block remoteip=xxx.xxx.xxx.xxx enable=yes
But is ...
-1
votes
1answer
61 views
Iptables DROP SSL traffic (443)
I'm trying to block any request to a SSL GET resource with specific parameters using iptables, i.e.: https://domain.com/hello?param=aux
I have already blocked traffic to port 80 with the following ...
0
votes
1answer
54 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 ...
0
votes
2answers
183 views
Iptables rules for nginx with php-fpm
I am setting up iptables rules on the server where nginx and php-fpm are running. I have allow both 80 and 443 ports but as I see there are also addiitonal connections to higher ports that are ...
0
votes
1answer
67 views
Android how to call iptables from inside application
I can do
Runtime.getRuntime().exec("/system/bin/iptables --version");
And that does return the version number.
But when I try to manipulate iptables calls like
Runtime.getRuntime().exec("su -c ...
0
votes
0answers
4 views
iptables dnat in lvs server ( tunnel mode) not work [migrated]
I use LVS - tunnel mode, then i want use iptables to redirect the Destination port to LVS.
eg:
LVS-server( tunl0: 110.75.11.11), eth0:10.232.67.1
realserver ( eth0:10.232.67.2, tunl0: ...
0
votes
0answers
19 views
squid: can't connect to peer with tcp_outgoing_address [migrated]
I encountered the problem with configuration of two squid servers. I have the following scheme -
The main idea is to download all files from rackspace and amazon through parent squid and store all ...
-1
votes
0answers
48 views
UDPsize=4069 How To Block iptables [closed]
mb.city.sakura.chiba.jp.domain > 10-172-109-11.cloud.opsource.net.20133: [udp sum ok] 39384 q: ANY? isc.org. 15/4/4 isc.org. SPF, isc.org. DNSKEY, isc.org. DNSKEY, isc.org. NAPTR, isc.org. AAAA ...




