博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ansible 批量配置cisco 交换机---接口篇
阅读量:6301 次
发布时间:2019-06-22

本文共 2561 字,大约阅读时间需要 8 分钟。

关于ansible不做介绍。

本例主要通过实例介绍ansible配置ios接口的几种方法,或者说可利用哪些模块配置接口。

1 .主机列表,本次测试以1台主机为例

[root@Ansible-01 ansible]# cat hosts[cisco]172.16.254.130 ansible_connection=local

2.playbooks内容

[root@Ansible-01 interface]# cat interface-phy.yml ---- name: interface config   hosts: cisco # vars:  #    creds: #         username: "{
{ username }}" # password: "{
{ password }}" gather_facts: no tasks: - name: action interface G1-2 configure ios_config: lines: - no shutdown - switch mode trunk - switch trunk allow vlan all - do wr parents: interface range gigabitEthernet 1/0/1 - 2 - name: action interface G3 configuration ios_l2_interface: name: GigabitEthernet1/0/3 mode: access access_vlan: 100 - name: action interface G3 configuration ios_l2_interface: name: GigabitEthernet1/0/4 mode: trunk native_vlan: 100 trunk_allowed_vlans: 10-255 - name: save configuration ios_command: commands: - wr

3.执行playbooks

[root@Ansible-01 interface]# ansible-playbook interface-phy.yml -u admin  -k SSH password: PLAY [interface config] **************************************************************************************************************TASK [action interface G1-2 configure] ***********************************************************************************************changed: [172.16.254.130]TASK [action interface G3 configuration] *********************************************************************************************changed: [172.16.254.130]TASK [action interface G4 configuration] *********************************************************************************************changed: [172.16.254.130]TASK [save configuration] ************************************************************************************************************ok: [172.16.254.130]PLAY RECAP ***************************************************************************************************************************172.16.254.130             : ok=4    changed=3    unreachable=0    failed=0

4.查看执行效果

interface GigabitEthernet1/0/1 switchport mode trunk!interface GigabitEthernet1/0/2 switchport mode trunk!interface GigabitEthernet1/0/3 switchport access vlan 100 switchport mode access!interface GigabitEthernet1/0/4 switchport trunk native vlan 100 switchport trunk allowed vlan 10-255 switchport mode trunk!
  1. 可见 ios_config和 ios_l2_interface 两个模块都可以操作,只有三层接口则可以使用ios_comfig或者ios_l3_interface模块。

转载于:https://blog.51cto.com/magic3/2348269

你可能感兴趣的文章
网络编程中常见结构体
查看>>
SSL/TLS原理详解
查看>>
Docker 自定义SSH服务镜像
查看>>
JavaScript强化教程 —— Cocos2d-JS自动JSB绑定规则修改
查看>>
configure: error: in `/root/httpd-2.2.11/srclib/apr': c
查看>>
CentOS7搭建Kubernetes-dashboard管理服务
查看>>
buildroot下查找外部编译器通过ext-toolchain-wrapper调用的参数
查看>>
MySQL Replication 主主配置详细说明
查看>>
Linux的任务调度
查看>>
在Android studio中添加jar包方法如下
查看>>
iframe 在ie下面总是弹出新窗口解决方法
查看>>
分享10款漂亮实用的CSS3按钮
查看>>
安装nginx 常见错误及 解决方法
查看>>
Gorun8电子商城
查看>>
在之前链表的基础上改良的链表
查看>>
android编译系统makefile(Android.mk)写法
查看>>
MD5源代码C++
查看>>
Eclipse 添加 Ibator
查看>>
Linux中变量$#,$@,$0,$1,$2,$*,$$,$?的含义
查看>>
Python编程语言
查看>>