]> git.pld-linux.org Git - projects/rc-scripts.git/blame - sysconfig/network-scripts/ifup-neigh
- updated comments
[projects/rc-scripts.git] / sysconfig / network-scripts / ifup-neigh
CommitLineData
eaf1d53a
AM
1#!/bin/sh
2#
ec8b15cb 3# $Id$
eaf1d53a 4#
625871bd
ER
5# Adds static arps for device $DEVICE
6# Called from ifup-post.
eaf1d53a 7
eaf1d53a 8if [ ! -f /etc/sysconfig/static-arp ]; then
b8c0e37b 9 return
eaf1d53a
AM
10fi
11
eaf1d53a
AM
12# note the trailing white space character in the grep gets rid of aliases
13egrep "^($DEVICE|any)[[:blank:]]" /etc/sysconfig/static-arp | while read iface mac ip state args; do
5e6dfc29
JR
14 if is_no "$IPV4_NETWORKING"; then
15 continue
16 fi
17 [ -z "$state" ] && state="stale"
18 /sbin/ip neigh replace $ip lladdr $mac nud $state dev $DEVICE
eaf1d53a
AM
19done
20
eaf1d53a 21# This must be last line !
5e6dfc29 22# vi:syntax=sh
This page took 0.036443 seconds and 4 git commands to generate.