Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2238017
  • 博文数量: 230
  • 博客积分: 9346
  • 博客等级: 中将
  • 技术积分: 3418
  • 用 户 组: 普通用户
  • 注册时间: 2006-01-26 01:58
文章分类

全部博文(230)

文章存档

2015年(30)

2014年(7)

2013年(12)

2012年(2)

2011年(3)

2010年(42)

2009年(9)

2008年(15)

2007年(74)

2006年(36)

分类: LINUX

2006-11-07 22:48:57

这样就不用每次都登录到 server 上 ifconfig 去查看了^_^

#! /bin/bash
# get device name on platinum server
DEVICE=`ifconfig|awk '/ppp[1-9]/{print $1}'`
if [ "$DEVICE" != "" ]
then
        # get the device named pppxx's IP
        NEW_IP=`ifconfig $DEVICE|awk -F"[ :]" '/inet/{print $16}'`
        # get the OLD IP if I found
        OLD_IP=`iptables-save -t nat|awk '/5.5.5.5/{print $NF}'`
        if [ "$OLD_IP" != "$NEW_IP" ]
        then
                if [ "$OLD_IP" != "" ]
                then
                        # delete the OLD rule about the OLD IP
                        iptables -t nat -D PREROUTING -d 5.5.5.5 -j DNAT --to $OLD_IP
                fi
                # insert the NEW rule use NEW IP
                iptables -t nat -I PREROUTING -d 5.5.5.5 -j DNAT --to $NEW_IP
        fi
fi

阅读(2970) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~