加入收藏 | 设为首页 | 会员中心 | 我要投稿 应用网_丽江站长网 (http://www.0888zz.com/)- 科技、建站、数据工具、云上网络、机器学习!
当前位置: 首页 > 运营中心 > 交互 > 正文

Solaris IPMP两种配置方法

发布时间:2016-10-28 05:07:41 所属栏目:交互 来源:站长网
导读:副标题#e# 更换华为防火墙后,发现Solaris基于ip探测方式配置的IPMP 呈现failed状态。经过分析,更改为基于link的IPMP配置方式后,解决了这次问题。 1、Multiple interface Link based IPMP configuration a. Active – Active configuration Command line
副标题[/!--empirenews.page--] 更换华为防火墙后,发现Solaris基于ip探测方式配置的IPMP 呈现failed状态。经过分析,更改为基于link的IPMP配置方式后,解决了这次问题。

1、Multiple interface Link based IPMP configuration
a. Active – Active configuration
Command line :

点击(此处)折叠或打开

  1. # ifconfig e1000g0 plumb 192.168.1.2 netmask + broadcast + group IPMPgroup up
  2. #
  3. # ifconfig e1000g1 plumb group IPMPgroup up
  4. For persistent configuration across reboots edit the files :
  5. /etc/hostname.e1000g0

  6. 192.168.1.2 netmask + broadcast + group IPMPgroup up

  7. /etc/hostname.e1000g1

  8. group IPMPgroup up
  9. Before Failure :
  10. # ifconfig -a

  11. lo0: flags=2001000849[UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL] mtu 8232 index 1
  12. inet 127.0.0.1 netmask ff000000

  13. e1000g0: flags=1000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 14
  14. inet 192.168.1.2 netmask ffffff00 broadcast 192.168.1.255
  15. groupname IPMPgroup
  16. ether 0:c:29:f6:ef:67

  17. e1000g1: flags=1000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 15
  18. inet 0.0.0.0 netmask ff000000
  19. groupname IPMPgroup
  20. ether 0:c:29:f6:ef:71
  21. After Failure
  22. # ifconfig -a

  23. lo0: flags=2001000849[UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL] mtu 8232 index 1
  24. inet 127.0.0.1 netmask ff000000

  25. e1000g0: flags=19000802[BROADCAST,MULTICAST,IPv4,NOFAILOVER,FAILED] mtu 0 index 14
  26. inet 0.0.0.0 netmask 0
  27. groupname IPMPgroup
  28. ether 0:c:29:f6:ef:67

  29. e1000g1: flags=1000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 15
  30. inet 0.0.0.0 netmask ff000000
  31. groupname IPMPgroup
  32. ether 0:c:29:f6:ef:71

  33. e1000g1:1: flags=1000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 15
  34. inet 192.168.1.2 netmask ffffff00 broadcast 192.168.1.255


b. Active standby Configuration
Command line :

点击(此处)折叠或打开

  1. # ifconfig e1000g0 plumb 192.168.1.2 netmask + broadcast + group IPMPgroup up
  2. #
  3. # ifconfig e1000g1 plumb group IPMPgroup standby up
  4. For persistent configuration across reboots edit the files :
  5. /etc/hostname.e1000g0

  6. 192.168.1.2 netmask + broadcast + group IPMPgroup up

  7. /etc/hostname.e1000g1

  8. group IPMPgroup standby up
  9. Before failure
  10. # ifconfig -a

  11. lo0: flags=2001000849[UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL] mtu 8232 index 1
  12. inet 127.0.0.1 netmask ff000000

  13. e1000g0: flags=1000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 20
  14. inet 192.168.1.2 netmask ffffff00 broadcast 192.168.1.255
  15. groupname IPMPgroup
  16. ether 0:c:29:f6:ef:67

  17. e1000g0:1: flags=1000842[BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 20
  18. inet 0.0.0.0 netmask 0

  19. e1000g1: flags=69000842[BROADCAST,RUNNING,MULTICAST,IPv4,NOFAILOVER,STANDBY,INACTIVE] mtu 0 index 21
  20. inet 0.0.0.0 netmask 0
  21. groupname IPMPgroup
  22. ether 0:c:29:f6:ef:71
  23. After failure
  24. # ifconfig -a

  25. lo0: flags=2001000849[UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL] mtu 8232 index 1
  26. inet 127.0.0.1 netmask ff000000

  27. e1000g0: flags=19000802[BROADCAST,MULTICAST,IPv4,NOFAILOVER,FAILED] mtu 0 index 20
  28. inet 0.0.0.0 netmask 0
  29. groupname IPMPgroup
  30. ether 0:c:29:f6:ef:67

  31. e1000g1: flags=21000842[BROADCAST,RUNNING,MULTICAST,IPv4,STANDBY] mtu 1500 index 21
  32. inet 0.0.0.0 netmask 0
  33. groupname IPMPgroup
  34. ether 0:c:29:f6:ef:71

  35. e1000g1:1: flags=21000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4,STANDBY] mtu 1500 index 21
  36. inet 192.168.1.2 netmask ffffff00 broadcast 192.168.1.255
2、Most commonly used Probe-Based IPMP configurations
a. Active – Active configuration
Groupname:             ipmp0
Active interface(s):   e1000g0 
                        e1000g1
Standby interface(s):  -
Data IP addresse(s):   192.168.1.2
Test IP addresse(s):   192.168.1.3
                        192.168.1.4
Command line :

(编辑:应用网_丽江站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

推荐文章
    热点阅读