Puppet 基于C/S的模型,利用agent和master两种角色提供扩展性极强的批量配置变更方案,在服务器/桌面领域的自动化配置方面得到了广泛使用,在数据中心和云计算如火如荼的今天,Google /Cisco/Vmware 这些业界大佬都投资了这家以开源软件puppet为基础的商业化公司puppetlabs, 足见其发展潜力较大,这家公司也推出了商用版本Puppet Enterprise。Puppet提供的模块化平台forge 也方便管理模块的共享,扩展其管理的广度。
- [device1 certname]
- type cisco
- url ssh://puppet:[email protected]/
- [device2 certname]
- type cisco
- url telnet://puppet:[email protected]/?enable=enablepassword
目前Type仅支持cisco一种,URL方法也仅支持Telnet和SSH两种,具体实现可以参考源码中“lib\puppet\util\network_device”这个目录的实现。
设备的Puppet配置及运行命令puppet device --server
后检查执行效果如下。
- node "c2950.domain.com" {
- interface {
- "GigabitEthernet0/1":
- description => "--> to upstream router",
- mode => trunk,
- allowed_trunk_vlans => "99, 1000"
- }
- }
- c2950#sh running-config interface GigabitEthernet 0/1
- Building configuration...
- ...
- interface GigabitEthernet0/1
- description --> to upstream router
- switchport trunk allowed vlan 99,1000
- switchport mode trunk
- end
如何将这种配置映射成相应的IOS命令,并通过Telnet/SSH下发给具体的设备,就是实现各种设备适配的重点了。举一个例子说明,对于Interface的配置,参考源码中类“Puppet::Util::NetworkDevice::Cisco::Interface”的实现就可以管中窥豹。
- COMMANDS = {
- # property => order, ios command/block/array
- :description => [1, "description %s"],
- :speed => [2, "speed %s"],
- :duplex => [3, "duplex %s"],
- :native_vlan => [4, "switchport access vlan %s"],
如此看来,扩展其他厂商的设备或者增加路由/ACL之类的配置实现并不困难,也就是体力活,只是抽象好的话,实现起来或许能再简洁些。
Cisco设备的支持是通过Telnet/SSH等传统的登陆方法,而F5的TMOS就是基于Linux系统的,且提供了基于SOAP的iControl API来实现对设备的管理功能。
puppetlabs-f5模块就是利用Rudy实现的iControl API来和设备进行交互通信的。
在/etc/puppet/device.conf中如下配置
- [f5.puppetlabs.lan]
- type f5
- url https://username:password@f5.puppetlabs.lan/partition
设备的Puppet配置如下,配置一个rule及一个服务器池。
- node f5.puppetlabs.lan {
- f5_rule { 'redirect_404':
- ensure => 'present',
- definition => 'when HTTP_RESPONSE {
- if { [HTTP::status] eq "404" } {
- redirect to "http://www.puppetlabs.com/redirect/404"}}',
- f5_pool { 'webapp':
- ensure => 'present',
- action_on_service_down => 'SERVICE_DOWN_ACTION_NONE'',
- member => {
- '10.10.0.1:80' => {'connection_limit' => '0',
- 'dynamic_ratio' => '1',
- 'priority' => '0',
- 'ratio' => '1'},
- '10.10.0.2:80' => {'connection_limit' => '0',
- 'dynamic_ratio' => '1',
- 'priority' => '0',
- 'ratio' => '1'},
- },
- minimum_active_member => '1',
- minimum_up_member => '0',
- }
- }
通过对puppetlabs-f5源码中类“Puppet::Util::NetworkDevice::F5::Device”的分析,不难看出 iControl API 是其实现的基础。
@transport ||= F5::IControl.new(@url.host, @url.user, @url.password, modules).get_interfaces
通过这个接口获取各个模块的配置接口,从而可以完成VirtualServer、NodeAddress及Monitor等重要元素的配置。
总结一下,这种方法适合被管设备侧实现了基于SOAP或Netconf等高级的网管配置协议,并且厂商提供了完善的SDK。比如H3C的IPS及ACG产品就提供了基于SOAP的管理API。