Preventive Controls are really important when building the digital banking security capabilities. Focusing to much of the detective and curative controls will surely diminished the chance of…Full description
ABSTRACT The usability of security systems has become a major issue in research on the efficiency and user acceptance of security systems. The authentication process is essential for contr…Full description
Full description
Security is important issue in every aspect in today's world if you are using the networks. Various algorithms are there to secure your network so that unauthorized user can't breach into your accounts. SO for this authentication and authorization pl
The Ultimate Network Security Checklist.
LAB CCNA SECURITY DETAILS AND INFORMATION
Descrição completa
The purpose of the copper-to-copper lab was to gain experience with identifying different types of chemical reactions, more specifically those involving copper, through which we learned the …Full description
Full description
Round two of the Burroughs Wellcome Fund's Career Development Guide series. This guide looks at choosing the right lab for you and also choosing the right people to fill your lab.
lab to find alcohol concentration in homemade wine.anything with ethanol concentration. lab to find concentration in commercial brand of wine.
Efficiency of the centrifugal pumpFull description
Efficiency of the centrifugal pump
Descripción completa
Full description
This has all the programs which is required to run all the programs of for INS Lab
Lab 3-1 Enhancing the Security of the Initial Configuration
Task 1: Add Password Protection Step 2:
Enter this sequence of commands into t he Branch router:
Branch>enable Branch#configure terminal Enter configuration configuration commands, one one per line.
Step 3: You will be asked for the password that you configured in the previous step.
Branch(config-line)#end Branch#exit
Branch con0 is now available
Press RETURN to get started.
1
Lab 3-1 Enhancing the Security of the Initial Configuration
User Access Verification
Password: cisco Branch>
Step 4:
Branch>enable Branch#show running-config | section line con line con 0 exec-timeout 60 0 password cisco logging synchronous login
Step 5: Enter the following command sequence into the Branch router:
Branch#configure terminal Enter configuration commands, one per line.
2
End with CNTL/Z.
Lab 3-1 Enhancing the Security of the Initial Configuration
Branch(config)#username ccna secret cisco Branch(config)#line console 0 Branch(config-line)#login local
Step 6: You will be asked for a username and password. Enter the credentials that you created in the previous step.
Branch(config-line)#end Branch#exit
Branch con0 is now available
Press RETURN to get started.
User Access Verification
Username: ccna Password: cisco Branch>
Step 7: Note that the password is encrypted, not in cleartext. You could use the service password-encryption command to encode the cleartext password, but this encryption type is weak.
Branch#show running-config | section username
3
Lab 3-1 Enhancing the Security of the Initial Configuration
SW1(config)#enable secret cisco SW1(config)#username ccna secret cisco SW1(config)#line console 0 SW1(config-line)#login local SW1(config-line)#line vty 0 4 SW1(config-line)#login local
Step 15:
SW1(config-line)#end SW1#exit
SW1 con0 is now available
Press RETURN to get started.
6
Lab 3-1 Enhancing the Security of the Initial Configuration
User Access Verification
Username: ccna Password: cisco SW1>
Step 16: Enter this command on the SW1 switch:
SW1#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK]
Step 17:
SW1>enable Password: cisco SW1#
Step 18: Enter the appropriate credentials to log into the switch. Exit Telnet session.
PC1>telnet 10.1.1.11 Trying 10.1.1.11 ... Open
7
Lab 3-1 Enhancing the Security of the Initial Configuration
User Access Verification
Username: ccna Password: cisco SW1>exit
[Connection to 10.1.1.11 closed by foreign host] PC1> Task 2: Enable SSH Remote Access Step 1:
Enter this sequence of commands on t he Branch router:
Branch(config)#ip domain-name cisco.com Branch(config)#crypto key generate rsa The name for the keys will be: Branch.cisco.com Choose the size of the key modulus in the range of 360 to 2048 for your General Purpose Keys. Choosing a key modulus greater than 512 may take few minutes.
How many bits in the modulus [512]: 1024 % Generating 1024 bit RSA keys, keys will be non-exportable...[OK]
8
Lab 3-1 Enhancing the Security of the Initial Configuration
Branch#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK]
Step 3: Enter this sequence of commands on t he SW1 switch:
SW1(config)#ip domain-name cisco.com SW1(config)#crypto key generate rsa The name for the keys will be: SW1.cisco.com Choose the size of the key modulus in the range of 360 to 2048 for your General Purpose Keys. Choosing a key modulus greater than 512 may take few minutes.
How many bits in the modulus [512]: 1024
9
Lab 3-1 Enhancing the Security of the Initial Configuration
% Generating 1024 bit RSA keys, keys will be non-exportable...[OK]
SW1(config)#line vty 0 4 SW1(config-line)#access-class 1 in
Step 3: You should not be successful, because the ACL that you defined allows only the Branch router to establish sessions to switch SW1.
PC1>ssh -l ccna 10.1.1.11 % Connection refused by remote host
PC1>
Step 4: You should be successful.
Branch#ssh -l ccna 10.1.1.11 Password: cisco
SW1>exit
[Connection to 10.1.1.11 closed by foreign host]
12
Lab 3-1 Enhancing the Security of the Initial Configuration
Branch# Exit SSH session from SW1 switch.
Step 5: Notice that the counters for both the permit and deny statements increased. If you did not define an explicit deny statement, a remote session from PC1 would still be denied, but you would not be able to see cou for denied remote session attempts.
SW1#show access-lists Standard IP access list 1 10 permit 10.1.1.1 (2 matches) 20 deny
any log (1 match)
The number of matchs shown is typical. However, your values may be larger if you attempted the SSH connection more than once.
Step 6: Enter this command on the SW1 switch:
SW1#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] Task 4: Configure a Login Banner Step 1:
Enter the following command on the Branch router:
banner login # Branch(config)#
Enter TEXT message.
13
End with the character '#'.
Lab 3-1 Enhancing the Security of the Initial Configuration
**********
Warning
*************
ccess to this device is restricted to authorized persons only! Un-authorized access is prohibited. Violators will be prosecuted. ***********************************************#
Branch(config)#
Step 2: Notice the login banner that you were presented with as you logged in.
Branch#logout
Branch con0 is now available
Press RETURN to get started.
**********
Warning
*************
Access to this device is restricted to authorized persons only!
14
Lab 3-1 Enhancing the Security of the Initial Configuration
Un-authorized access is prohibited. Violators will be prosecuted. ***********************************************
User Access Verification
Username: ccna Password: cisco
Step 3: Enter this command on the Branch router:
Branch#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK]
Step 4: Enter the following command on the SW1 switch:
banner login # SW1(config)#
Enter TEXT message.
End with the character '#'.
**********
*************
Warning
ccess to this device is restricted to authorized persons only! Un-authorized access is prohibited. Violators will be prosecuted.
15
Lab 3-1 Enhancing the Security of the Initial Configuration
***********************************************#
SW1(config)#
Step 5: Notice the login banner that you were presented with as you logged in.
SW1#logout
SW1 con0 is now available
Press RETURN to get started.
**********
Warning
*************
Access to this device is restricted to authorized persons only! Un-authorized access is prohibited. Violators will be prosecuted. ***********************************************
16
Lab 3-1 Enhancing the Security of the Initial Configuration