Adding persistent ARP entry in centOS -
i want add arp entry & make persistent.
i created file /etc/ethers added line has <mac_address> <ip_address>. created script /sbin/ifup-local.
#!/bin/sh if [[ "$1" == "eth0" ]] arp -f /etc/ethers else #do_nothing fi after reboot or network up/down, arp -n doesn't show entries.
please let me know if have solution
Comments
Post a Comment