]> git.pld-linux.org Git - projects/rc-scripts.git/blame_incremental - lib/ifup-neigh
Umount remaining filesystems one by one (using -R) option which helps in cases when...
[projects/rc-scripts.git] / lib / ifup-neigh
... / ...
CommitLineData
1#!/bin/sh
2#
3#
4# Adds static arps for device $DEVICE
5# Called from ifup-post.
6
7if is_no "$IPV4_NETWORKING"; then
8 return
9fi
10
11if [ ! -f /etc/sysconfig/static-arp ]; then
12 return
13fi
14
15# note the trailing white space character in the grep gets rid of aliases
16grep -E "^($DEVICE|any)[[:blank:]]" /etc/sysconfig/static-arp | while read iface mac ip state args; do
17 [ -z "$state" ] && state="stale"
18 /sbin/ip neigh replace $ip lladdr $mac nud $state dev $DEVICE
19done
This page took 0.030925 seconds and 4 git commands to generate.