]> git.pld-linux.org Git - projects/rc-scripts.git/blame - sysconfig/network-scripts/ifup-routes
- add static-routes6 support (IPv6-only ip routes and rules)
[projects/rc-scripts.git] / sysconfig / network-scripts / ifup-routes
CommitLineData
12de71be 1#!/bin/sh
b0443108 2#
ec8b15cb 3# $Id$
b0443108 4#
625871bd
ER
5# Adds static routes which go through device $DEVICE
6# Called from ifup-post.
7742e157 7
fa68650b 8if [ ! -f /etc/sysconfig/static-routes -a ! -f /etc/sysconfig/static-routes6 ]; then
b8c0e37b 9 return
7742e157 10fi
a9d7fb92 11
12# note the trailing white space character in the grep gets rid of aliases
a51d5138 13grep -E "^($DEVICE|any)[[:blank:]]" /etc/sysconfig/static-routes | while read device args; do
46db3d10 14 if [[ "$args" = *:* ]]; then
5e6dfc29
JR
15 if is_no "$IPV6_NETWORKING"; then
16 continue
17 fi
18 else
19 if is_no "$IPV4_NETWORKING"; then
20 continue
21 fi
74a7f2e4 22 fi
5e6dfc29 23 /sbin/ip route add $args dev $REALDEVICE
12de71be 24done
f3df266c 25
fa68650b
JR
26if ! is_no "$IPV6_NETWORKING"; then
27 grep -E "^($DEVICE|any)[[:blank:]]" /etc/sysconfig/static-routes6 | while read device args; do
28 /sbin/ip -6 route add $args dev $REALDEVICE
29 done
30fi
f3df266c
JK
31
32# based on information from http://avahi.org/wiki/AvahiAutoipd#Routes
33if is_yes "$ZEROCONF" && ! /sbin/ip link show dev $REALDEVICE | grep -q POINTOPOINT ; then
34 # metric based on device ifindex, so the same route may be added to
35 # multiple devices. Big, so it won't conflict with anything else.
36 if [ -f /sys/class/net/$REALDEVICE/ifindex ] ; then
37 metric="$(cat /sys/class/net/$REALDEVICE/ifindex)"
38 metric=$(($metric + 1000))
39 else
40 metric=1000
41 fi
42
43 # default route in default table, so it won't override default
44 # route set by other means
45 /sbin/ip route add default metric $metric dev $REALDEVICE table default
46
47 # add 169.254.0.0/16 route if not already present on the device
48 current=$(/sbin/ip route show 169.254.0.0/16 dev $REALDEVICE)
49 if [ -z "$current" ] ; then
50 /sbin/ip route add 169.254.0.0/16 metric $metric dev $REALDEVICE
51 fi
52
53 unset metric
54 unset current
55fi
This page took 0.194311 seconds and 4 git commands to generate.