hi guys I need help with our homework. How do I put password in packet tracer? and also what is a AMY and AU router?? Here is the complete instructions our prof gave us when he left for a meeting. Also how do you make it max of 2 users at a time for remote access? Somebody explain me how to do those lines in red only. Cheers!


IP BLOCK: / 14

DTE, END DEVICE - FIRST USABLE

DCE, ROUTER LAN - LAST USABLE

BANNER: "KEEP OUT"

CLOCK RATE: 64000

PASSWORD: (TELNET, CONSOLE): CISCO <-- TYPE7

ENABLE PASSWORD: CISCO --> SECRET M05

MAX. 2 USERS AT A TIME FOR REMOTE ACCESS

AMY TO AU ROUTER

Dani AI

Generated

A few clarifications to match your professor’s notes and what Packet Tracer expects:

  • line con 0 is the physical console line. vty 0 4 are the five virtual terminal lines (Telnet/SSH), so by default up to 5 remote sessions can connect. To allow only two remote users, configure only lines 0–1 for remote access and disable 2–4.
  • Type 7 refers to the weak, reversible obfuscation used for line passwords when you enable service password-encryption. For the privileged (enable) password, always use enable secret (hashed). In many Packet Tracer IOS images this stores as Type 5 (MD5).
  • The banner is a message-of-the-day.
  • Clock rate is set only on the DCE side of a serial link.
  • AMY to AU router likely means your two routers should be named AMY and AU and connected together.
  • For the /14 block 172.201.56.75/14, the subnet is 172.200.0.0/14 (mask 255.252.0.0). First usable: 172.200.0.1. Last usable: 172.203.255.254.

Example snippets you can paste in the appropriate modes:

banner motd #KEEP OUT#
enable secret M05
service password-encryption

username student secret M05
line vty 0 1
 login local
 transport input telnet
line vty 2 4
 transport input none

! On the serial interface that shows DCE (verify with 'show controllers'):
interface s0/0/0
 clock rate 64000

To remove a previously set enable secret on a switch or router: no enable secret (then set a new one). Assign 172.200.0.1/14 to the end device and 172.203.255.254/14 to the router LAN interface, per the “first/last usable” requirement.

#config t
config#enable secret class /* try type this after you are at configuration terminal
config#line con 0
config-if#password cisco
config-if#exit
config#line vty 0 4
config-if#password cisco
config-if#exit

#config t
config#enable secret class /* try type this after you are at configuration terminal
config#line con 0
config-if#password cisco
config-if#exit
config#line vty 0 4
config-if#password cisco
config-if#exit

what is the line con 0 for? and also, should I enter all of these in the CLI of a router?

yes..you should enter all of that in the CLI..

Set a console password to cisco(need to login before users can use the router CLI)
Router(config)#line con 0
Router(config-if)#password cisco
Router(config-if)#login
Router(config-if)#end

Set a telnet password
Router(config)#line vty 0 4
Router(config-if)#password cisco
Router(config-if)#login
Router(config-if)#end

What is the meaning of vty o 4?
it stand of telnet ?

you can as well follow instructions by the provider through guide books

plz help to answer my question about cisco switch.....
how to disable/delete enabled secret paasword on switch?
plzzzzzzz reply fast.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.