Core Configuration of a Router and a Switch in Cisco Packet Tracer - Every Command Explained.

Поділитися
Вставка
  • Опубліковано 1 лют 2025

КОМЕНТАРІ • 11

  • @allanmanaguit2422
    @allanmanaguit2422 Рік тому +3

    As always Troy, your the best!

    • @troyberg
      @troyberg  Рік тому

      Thanks Allan - hope things are great with you!

  • @troyberg
    @troyberg  Рік тому +4

    Thanks for watching, everyone! As promised, the following is the cut-and-paste configuration we completed in the video for the 3560 switch:
    !Switch Core Configuration
    !=====================
    !Personalize the Device
    !=====================BEGIN PASTE
    !Move from user exec to privileged exec mode
    enable
    !Move to global configuration mode
    configure terminal
    !Configure the hostname
    hostname SW01
    !Secure the Device
    !=====================
    !Configure a security banner
    banner motd #
    ===========================================
    No bad guys allowed. Authorized Users Only
    ===========================================#
    !Apply console password
    line console 0
    password pizza
    login
    exit
    !apply vty lines password
    line vty 0 15
    password remote
    login
    exit
    !Encrypt plain text passwords
    service password-encryption
    !Apply a plain text password to access priv exec mode
    !enable password access
    !Apply an encrypted password to access priv exec mode
    enable secret shhhhh
    !Connect the Device
    !=====================
    !Configure the management interface
    interface vlan 1
    ip address 192.168.0.100 255.255.255.0
    no shutdown
    exit
    !=====================END PASTE
    !Save my running configuration
    copy running-config startup-config
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    The following is the cut-and-paste configuration we completed in the video for the 4321 router:
    !Router Core Configuration
    !=====================
    !Personalize the Device
    !=====================BEGIN PASTE
    !Move from user exec to privileged exec mode
    enable
    !Move to global configuration mode
    configure terminal
    !Configure the hostname
    hostname RT01
    !Secure the Device
    !=====================
    !Configure a security banner
    banner motd #
    ===========================================
    No bad guys allowed. Authorized Users Only
    ===========================================#
    !Apply console password
    line console 0
    password pizza
    login
    exit
    !apply vty lines password
    line vty 0 15
    password remote
    login
    exit
    !Encrypt plain text passwords
    service password-encryption
    !Apply a plain text password to access priv exec mode
    !enable password access
    !Apply an encrypted password to access priv exec mode
    enable secret shhhhh
    !Connect the Device
    !=====================
    !Configure the management interface
    interface g0/0/0
    ip address 192.168.0.254 255.255.255.0
    no shutdown
    exit
    !=====================END PASTE
    !Save my running configuration
    copy running-config startup-config

  • @Qunix1
    @Qunix1 8 місяців тому +1

    Hey Troy.
    Please make more videos, you are doing a such a good job!

  • @carloscastroquintosa3598
    @carloscastroquintosa3598 Рік тому

    welcome back professor ! You are the best

    • @troyberg
      @troyberg  Рік тому

      Happy to be back, Carlos. Thanks for stopping in!

  • @ЮрийК-р9я
    @ЮрийК-р9я 5 місяців тому +1

    Your videos are very detailed and helpful!!!! Where did you go and why did you stop making videos!

  • @tomebucks
    @tomebucks Місяць тому

    Hi Troy, it was an exciting videos! Thank you
    Anyway, could you please give an advice about the configuration firewall in front of router? So, the firewall will be connected directly to the ISP
    Hope you can see the comment :)
    Thank you, again!

  • @falcon__4316
    @falcon__4316 Рік тому

    great new video

    • @troyberg
      @troyberg  Рік тому +1

      Thanks Falcon. Appreciated.

  • @JamesShields-tl7ig
    @JamesShields-tl7ig 19 днів тому

    Not sure if anyone will reply to this comment. But I got stuck at the pinging the switch part from PC01. I tried and it kept saying Request timed out. I followed closely along with Troy, but my result is different. What am I doing wrong?