iptables: Unknown error 4294967295

General support questions including new installations
Post Reply
tripialos
Posts: 30
Joined: 2012/04/03 11:06:46

iptables: Unknown error 4294967295

Post by tripialos » 2014/03/07 09:17:12

Greetings

I am facing an iptables issue which is tough to approach and solve it. I tried some Googling but didn't get much apart from some similar cases which are on VPS (not my cases since i am not on a vps but on an embedded system).

When i execute a script which performs various actions which includes rsync to a target using ssh, i am getting the bellow error:

Code: Select all

iptables: Unknown error 4294967295
iptables: Unknown error 4294967295
iptables: Unknown error 4294967295
iptables: Unknown error 4294967295
iptables: Unknown error 4294967295
iptables: Unknown error 4294967295
iptables: Unknown error 4294967295
Any ideas how to troubleshoot this?

I am using CentOS 5.5 (Final) 32bit

I am also adding some additional info which might help:

Code: Select all


[root@server ~]# ll /lib/modules/`uname -r`
total 1396
lrwxrwxrwx 1 root root     48 Dec 20 23:19 build -> ../../../usr/src/kernels/2.6.18-371.3.1.el5-i686
drwxr-xr-x 2 root root   4096 Dec  5 20:19 extra
drwxr-xr-x 9 root root   4096 Dec 20 23:19 kernel
-rw-r--r-- 1 root root 313405 Dec 20 23:20 modules.alias
-rw-r--r-- 1 root root     69 Dec 20 23:20 modules.ccwmap
-rw-r--r-- 1 root root 242134 Dec 20 23:20 modules.dep
-rw-r--r-- 1 root root    147 Dec 20 23:20 modules.ieee1394map
-rw-r--r-- 1 root root    375 Dec 20 23:20 modules.inputmap
-rw-r--r-- 1 root root   2699 Dec 20 23:20 modules.isapnpmap
-rw-r--r-- 1 root root     74 Dec 20 23:20 modules.ofmap
-rw-r--r-- 1 root root 257083 Dec 20 23:20 modules.pcimap
-rw-r--r-- 1 root root    589 Dec 20 23:20 modules.seriomap
-rw-r--r-- 1 root root 150925 Dec 20 23:20 modules.symbols
-rw-r--r-- 1 root root 397303 Dec 20 23:20 modules.usbmap
lrwxrwxrwx 1 root root      5 Dec 20 23:19 source -> build
drwxr-xr-x 2 root root   4096 Dec  5 20:19 updates
drwxr-xr-x 3 root root   4096 Dec 20 23:19 weak-updates
[root@server ~]# modprobe iptable_nat; lsmod |grep iptable_nat
iptable_nat            10949  1 
ip_nat                 21229  2 ipt_MASQUERADE,iptable_nat
ip_conntrack           53665  4 xt_state,ipt_MASQUERADE,iptable_nat,ip_nat
ip_tables              17029  2 iptable_filter,iptable_nat
x_tables               17349  5 xt_state,ipt_MASQUERADE,iptable_nat,ip_tables,xt_tcpudp
[root@server ~]# modprobe ipt_state; lsmod |grep ipt_state


User avatar
TrevorH
Site Admin
Posts: 33219
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: iptables: Unknown error 4294967295

Post by TrevorH » 2014/03/07 09:20:54

Look in your logs, probably /var/log/messages for error messages around the time of the problem.

The one time I've seen that message is if you omit the "-p tcp" parameter from a new iptables rule but it doesn't sound like you're hitting this unless your script is adding new iptables rules.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

tripialos
Posts: 30
Joined: 2012/04/03 11:06:46

Re: iptables: Unknown error 4294967295

Post by tripialos » 2014/03/07 09:44:40

TrevorH wrote:Look in your logs, probably /var/log/messages for error messages around the time of the problem.

The one time I've seen that message is if you omit the "-p tcp" parameter from a new iptables rule but it doesn't sound like you're hitting this unless your script is adding new iptables rules.
Hi trevor

Thanks for your instant promt.

Indeed the script is adding a few rules to the iptables. I will have a look at the logs see if i can come up with something

Post Reply