Solaris IPMP两种配置方法

9130阅读 0评论2016-10-20 lzp_0004
分类:SOLARIS

更换华为防火墙后,发现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 :

点击(此处)折叠或打开

  1. # ifconfig e1000g0 plumb 192.168.1.2 netmask + broadcast + group ipmp0 up addif 192.168.1.3 netmask + broadcast + deprecated -failover up
  2. #
  3. # ifconfig e1000g1 plumb 192.168.1.4 netmask + broadcast + deprecated -failover group ipmp0 up


  4. To ensure persistent configuration across reboots edit the files :
  5. /etc/hostname.e1000g0:
  6. 192.168.1.2 netmask + broadcast + group ipmp0 up \
  7. addif 192.168.1.3 netmask + broadcast + deprecated -failover up

  8. /
  9. /etc/hostname.e1000g1:

  10. 192.168.1.4 netmask + broadcast + deprecated -failover group ipmp0 up
  11. Before failure :
  12. # ifconfig -a

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

  16. e1000g0: flags=1000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 9
  17.  
  18.         inet 192.168.1.2 netmask ffffff00 broadcast 192.168.1.255
  19.  
  20.         groupname ipmp0
  21.  
  22.         ether 0:c:29:f6:ef:67

  23. e1000g0:1: flags=9040843[UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER] mtu 1500 index 9
  24.  
  25.         inet 192.168.1.3 netmask ffffff00 broadcast 192.168.1.255

  26. e1000g1: flags=9040843[UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER] mtu 1500 index 10
  27.  
  28.         inet 192.168.1.4 netmask ffffff00 broadcast 192.168.1.255
  29.  
  30.         groupname ipmp0
  31.  
  32.         ether 0:c:29:f6:ef:71


  33. After failure :
  34. # ifconfig -a

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

  38. e1000g0: flags=19000802[BROADCAST,MULTICAST,IPv4,NOFAILOVER,FAILED] mtu 0 index 9
  39.  
  40.         inet 0.0.0.0 netmask 0
  41.  
  42.         groupname ipmp0
  43.  
  44.         ether 0:c:29:f6:ef:67

  45. e1000g0:1: flags=19040803[UP,BROADCAST,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,FAILED] mtu 1500 index 9
  46.  
  47.         inet 192.168.1.3 netmask ffffff00 broadcast 192.168.1.255

  48. e1000g1: flags=9040843[UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER] mtu 1500 index 10
  49.  
  50.         inet 192.168.1.4 netmask ffffff00 broadcast 192.168.1.255
  51.  
  52.         groupname ipmp0
  53.  
  54.         ether 0:c:29:f6:ef:71

  55. e1000g1:1: flags=1000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 10
  56.  
  57.         inet 192.168.1.2 netmask ffffff00 broadcast 192.168.1.255


2. Active – Standby
The only difference in case of a active-standby configuration is – the interface configured as standby is not used to send any out bound traffic. Thus disabling the load balancing feature of an active-active configuration.
Groupname:             ipmp0
Active interface(s):   e1000g0             
Standby interface(s):  e1000g1
Data IP addresse(s):   192.168.1.2
Test IP addresse(s):   192.168.1.3
                        192.168.1.4
Command line :

点击(此处)折叠或打开

  1. # ifconfig e1000g0 plumb 192.168.1.2 netmask + broadcast + group ipmp0 up addif 192.168.1.3 netmask + broadcast + deprecated -failover up
  2. #
  3. # ifconfig e1000g1 plumb 192.168.1.4 netmask + broadcast + deprecated -failover group ipmp0 standby up
  4. To ensure persistent configuration across reboots edit the files :
  5. /etc/hostname.e1000g0:

  6. 192.168.1.2 netmask + broadcast + group ipmp0 up \

  7. addif 192.168.1.3 netmask + broadcast + deprecated -failover up

  8. /
  9. /etc/hostname.e1000g1:
  10. 192.168.1.4 netmask + broadcast + deprecated -failover group ipmp0 standby up
  11. Before failure :
  12. # ifconfig -a

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

  16. e1000g0: flags=1000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 11
  17.  
  18.         inet 192.168.1.2 netmask ffffff00 broadcast 192.168.1.255
  19.  
  20.         groupname ipmp0
  21.  
  22.         ether 0:c:29:f6:ef:67

  23. e1000g0:1: flags=9040843[UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER] mtu 1500 index 11
  24.  
  25.         inet 192.168.1.3 netmask ffffff00 broadcast 192.168.1.255

  26. e1000g1: flags=69040843[UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,STANDBY,INACTIVE] mtu 1500 index 12
  27.  
  28.         inet 192.168.1.4 netmask ffffff00 broadcast 192.168.1.255
  29.  
  30.         groupname ipmp0
  31.  
  32.         ether 0:c:29:f6:ef:71
  33. After failure :
  34. # ifconfig -a

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

  38. e1000g0: flags=19000802[BROADCAST,MULTICAST,IPv4,NOFAILOVER,FAILED] mtu 0 index 11
  39.  
  40.         inet 0.0.0.0 netmask 0
  41.  
  42.         groupname ipmp0
  43.  
  44.         ether 0:c:29:f6:ef:67

  45. e1000g0:1: flags=19040803[UP,BROADCAST,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,FAILED] mtu 1500 index 11
  46.  
  47.         inet 192.168.1.3 netmask ffffff00 broadcast 192.168.1.255

  48. e1000g1: flags=29040843[UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,STANDBY] mtu 1500 index 12
  49.  
  50.         inet 192.168.1.4 netmask ffffff00 broadcast 192.168.1.255
  51.  
  52.         groupname ipmp0
  53.  
  54.         ether 0:c:29:f6:ef:71

  55. e1000g1:1: flags=21000843[UP,BROADCAST,RUNNING,MULTICAST,IPv4,STANDBY] mtu 1500 index 12
  56.  
  57.         inet 192.168.1.2 netmask ffffff00 broadcast 192.168.1.255




上一篇:Solaris arp
下一篇:solaris巡检命令