File: uml-utilities.if-up.d

package info (click to toggle)
uml-utilities 20070815.4-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 752 kB
  • sloc: ansic: 3,392; perl: 1,277; makefile: 239; exp: 129; sh: 122
file content (12 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

test -n "${IF_UML_PROXY_ARP}" || exit 0
test -n "${IF_UML_PROXY_ETHER}" || exit 0

sysctl -w net/ipv4/conf/"${IFACE}"/proxy_arp=1

for i in ${IF_UML_PROXY_ARP};
do
  route add -host "$i" dev "${IFACE}"
  arp -Ds "$i" "${IF_UML_PROXY_ETHER}" pub
done