Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Linux使用iptables進行異機備份/恢復的方法

Linux使用iptables進行異機備份/恢復的方法

日期:2017/1/25 10:33:04      編輯:關於Linux

  在Linuxp系統中,itables命令可以為我們進行異機備份或恢復,但可能很多用戶還不是很熟悉,下面小編就將方法分享給大家。

Linux使用iptables進行異機備份/恢復的方法

  方法如下:

  1、iptables的配置文件位置:/etc/sysconfig/iptables

  主控機:即業務運行中的機子;備份機:即主控機故障時,切換到備份的機子

  --在主控機上的操作-------------------

  2、建立目錄:

  mkdir -p /bak/iptables/

  mkdir /root/script/

  3、在/root/script/目錄下建立腳本:

  vi backup.sh

  \cp /etc/sysconfig/iptables /bak/iptables/iptables_$(date +%Y%m%d%H)

  4、定制自動任務:

  crontab -e

  */10 * * * * /usr/sbin/ntpdate 210.72.145.44

  10 * * * * sh /root/script/backup.sh

  --在備份機上操作---------------------

  5、建立目錄:

  mkdir -p /bak/iptables/{lt,yd} #lt目錄放聯通跳轉的備份,yd目錄放移動跳轉的備份

  mkdir /root/script/

  6、在/root/script/目錄下建立腳本:

  vi scp_lt.sh

  #!/usr/bin/expect -f

  set password gst

  spawn scp -P 22 [email protected]:/etc/sysconfig/iptables /bak/iptables/lt/iptables

  set timeout 300

  expect "[email protected]'s password:"

  set timeout 300

  send "$password\r"

  set timeout 300

  send "exit\r"

  expect eof
上一頁12下一頁共2頁

Copyright © Windows教程網 All Rights Reserved