Neighbour table overflow 解決方法

當遇到以下問題時

Aug 04 16:39:29 kernel: neighbour: arp_cache: neighbor table overflow!

先進行查詢:

arp -an|wc -l

看看數值多少,如果太高則進行調整增大表格。

echo "net.ipv4.neigh.default.gc_thresh1 = 512" >> /etc/sysctl.conf
echo "net.ipv4.neigh.default.gc_thresh2 = 2048" >> /etc/sysctl.conf
echo "net.ipv4.neigh.default.gc_thresh3 = 4096" >> /etc/sysctl.conf
sysctl -p

則成功生效。

 

阅读剩余
THE END