Script
User EXECPrivileged EXEC Global Config(Interface/Router/Line) Description
ping       ping 192.168.1.1
show(limited)        
enable        
  reload      
  debug      
  copy running-config startup-config      
  configure terminal      
    no ip domain-lookup   misspelled words can take 30 sec
    hostname   hostname Router1
    ip domain-name Domain.com    
    banner motd $welcome$    
    enable password ########   the enable password (uncommon)
    enable secret ########   The Secret Password "Privelaged EXEC password"
    username admin password ######   idontknow
    ip default-gateway 192.168.1.254    
    service password-encryption   encrypt the clear text password login
    line console 0    
      password cisco  
      logging synchronous  
      login  
      exec-timeout 99 9 Minutes, Seconds
    line aux 0    
      password cisco  
      logging synchronous dont interrupt my typing plz
      login local  
    line vty 0 15   Virtual Teletype
      transport input ssh  
      logging synchronous  
      login  
    interface gigabitethernet 0/1    
      ip address 192.168.0.1 255.255.255.0  
      description myPort1  
      no shutdown  
    interface gigabitethernet 0/2.10    
      encapsulation dot1q 10  
      ip address 192.168.1.1 255.255.255.0  
      description TrunkLine10  
      no shutdown  
    interface gigabitethernet 0/2.30    
      encapsulation dot1q 30  
      ip address 192.168.3.1 255.255.255.0  
      description TrunkLine30  
      no shutdown  
    interface fastethernet 0/7   Switch Only
      switchport mode access Switch Only
      switchport access vlan 70 Switch Only
    interface gigabitethernet 0/1   Switch Only
      switchport mode trunk Switch Only
    interface range gigabitethernet 0/1-24    
      description myPort1  
      no shutdown  
    vlan1   or no vlan1 to delete
      name  
    interface vlan1    
      ip address 192.168.0.11 255.255.255.0 VLANs on switches ONLY
      description myVLAN1  
      no shutdown  
    router ospf 1   *Must have one up interface
      network 192.168.1.0 0.0.0.255 area 0  
    router eigrp 1    
      network 10.1.1.0 0.0.0.3  
    crypto key zeroize rsa    
    yes    
    crypto key generate rsa general-keys modulus 1024    
  copy running-config startup-config    
  clock set 06:30:59 2 feb 2021    
Back to index