Tag: Cisco IOS
-
Basic DHCP Configuration
This is a simple DHCP configuration on a Layer 3 Switch: SW1(config)# ip dhcp excluded-address 10.10.10.1 SW1(config)# ip dhcp pool VLAN20POOL SW1(dhcp-config)# network 10.10.10.0 255.255.255.0 SW1(dhcp-config)# default-router 10.10.10.1 SW1(dhcp-config)# lease 2 Lease is in hours. Default-router IP indicates the default hop for the 10.10.10.0/24 network. The excluded-address will not be available to the DHCP client […]
-
Ansible – Cisco Config Implementation
The goal of this article is to explain configuration implementation on Cisco IOS after the config has been generated as shown in Ansible Config Generator III: config-implementation.yml — – hosts: switch gather_facts: true connection: local tasks: – name: OBTAIN LOGIN CREDENTIALS include_vars: secrets.yml – name: DEFINE PROVIDER […]