szukalem, czytalem... probowalem nawet!

ale poddaje sie...
zachcialo mi sie arp ustawic...
moj plik /etc/ethers
192.168.0.2 00:60:52:0A:73:E8
192.168.0.3 00:0C:6E:F6:54:47
192.168.0.4 00:30:4f:27:07:0a
192.168.0.5 00:30:4f:26:bc:90
192.168.0.6 00:04:61:54:b4:2e
192.168.0.7 00:14:2a:1d:c6:a9
192.168.0.8 00:0b:6a:61:D4:81
192.168.0.9 00:04:61:5A:64:D9
192.168.0.10 00:30:4F:1F:B9:BB
192.168.0.11 00:15:f2:38:16:ef
192.168.0.12 00:30:4F:2D:CE:52
192.168.0.14 00:0F:EA:2E:A0:B3
192.168.0.16 00:a0:cc:c1:50:ef
192.168.0.17 00:0b:6a:59:c9:d8
uruchamiam arp'a skryptem znalezionym gdzies tu na forum
#!/bin/sh
. /etc/rc.conf
. /etc/rc.d/functions
plik_arp=/etc/ethers
RUNNING=`cat /var/run/arp 2>/dev/null`
case "$1" in
start)
stat_busy "Start kontroli statycznej arp"
[ -z "$RUNNING" ] && arp -f $plik_arp 2>/dev/null
if [ $? -gt 0 ]; then
stat_fail
else
echo "running" > /var/run/arp
add_daemon arp
stat_done
fi
;;
stop)
stat_busy "Zatrzymanie kontroli statycznej arp"
if [ ! -z "$RUNNING" ]; then
grep "^" $plik_arp | grep -v "^#"| while read ip hw_addr; do
if [ "$hw_addr" != "" ];then
arp -d $ip
fi
done
rm /var/run/arp
rm_daemon arp
stat_done
else
stat_fail
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
status)
arp -n
;;
*)
echo "usage: $0 {start|stop|restart|status}"
esac
exit 0
i teraz co nastepuje... kilka-kilkanascie minut jest ok, wyglada ok, tak mi sie wydaje przynajmniej, az tu nagle...

Nie ma neta... w ten sposob, ze nie mozna nawiazywac nowych polaczen. Polaczenia juz nawiazane dzialaja i szaleja tak, ze potrafia wyssac cale lacze ignorujac niceshapera.
arp status podaje
[root@stefan rc.d]# ./arp status
Address HWtype HWaddress Flags Mask Iface
192.168.0.8 ether 00:0B:6A:61:D4:81 CM eth1
192.168.0.7 ether 00:14:2A:1D:C6:A9 CM eth1
192.168.0.6 ether 00:04:61:54:B4:2E CM eth1
192.168.0.6 ether 00:04:61:54:B4:2E C eth0
192.168.0.5 ether 00:30:4F:26:BC:90 CM eth1
192.168.0.14 ether 00:0F:EA:2E:A0:B3 CM eth1
192.168.0.11 ether 00:15:F2:38:16:EF CM eth1
192.168.0.2 ether 00:60:52:0A:73:E8 CM eth1
192.168.0.9 ether 00:04:61:5A:64:D9 CM eth1
192.168.0.5 ether 00:30:4F:26:BC:90 C eth0
192.168.0.4 ether 00:30:4F:27:07:0A CM eth1
192.168.0.10 ether 00:30:4F:1F:B9:BB CM eth1
80.53.15.65 ether 00:13:A3:93:40:17 C eth0
192.168.0.14 ether 00:0F:EA:2E:A0:B3 C eth0
192.168.0.17 ether 00:0B:6A:59:C9:D8 CM eth1
192.168.0.12 ether 00:30:4F:2D:CE:52 CM eth1
192.168.0.2 ether 00:60:52:0A:73:E8 C eth0
192.168.0.16 ether 00:A0:CC:C1:50:EF CM eth1
192.168.0.3 ether 00:0C:6E:F6:54:47 CM eth1
eth0 - inet
eth1 - local
domyslam sie, ze arp ma cos nie tak z interfejsami albo kurde nie wiem co...
Czemu tak jest?
192.168.0.14 ether 00:0F:EA:2E:A0:B3 C eth0
192.168.0.14 ether 00:0F:EA:2E:A0:B3 CM eth1
nie mam juz koncepcji...
z gory dzieki za pomoc.
Pozdro