1/41
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Place Devices and Connect
Configure Router0
Configure PCs
Configure Server0
These are the general steps in making a Single-Switch Network
2911 router, PC-PT PCs, 2950-24 Switch, Server
What are the devices needed in making an FTP Single Switch Network?
2911 Router
Configure Router0 (Step 1):
Select a _______ from Network Devices and drag and drop it to the workspace.
Router0, Config
Configure Router0 (Step 2):
Select ________ and go to ________.
GigabitEthernet0/0
Configure Router0 (Step 3):
Configure the ______________ by assigning IP address as 192.168.1.1 and subnet mask as 255.255.255.0 and turn on the port status
192.168.1.1 255.255.255.0
Configure Router0 (Step 3):
Configure the GigabitEthernet0/0 by assigning IP address as ________ and subnet mask as ________ and turn on the port status
GigabitEthernet0/1
Configure Router0 (Step 3):
Configure the ______________ by assigning IP address as 10.0.0.1 and subnet mask as 255.0.0.0 and turn on the port status
10.0.0.1 255.0.0.0
Configure Router0 (Step 3):
Configure the GigabitEthernet0/1 by assigning IP address as ________ and subnet mask as ________ and turn on the port status
Router>enable
Router#
Router# configure terminal
Router(config)#interface GigabitEthernet0/0
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#exit
Router(config)#interface GigabitEthernet0/1
Router(config-if)#ip address 10.0.0.1 255.0.0.0
Router(config-if)#no shutdownIt is the CLI commands used to configure the router interfaces.
Router(config-if)#no shutdown
This command line turns on the port status. If not typed into the CLI, the connection won’t be successful as the port status is still off.
Two PC-PT type PCs
Configure PC(Step 1):
Select _______ from End devices and drag and drop to the workspace.
FastEthernet0
Configure PC(Step 2):
Select PC0 and go to _________ in config and assign IP address and subnet mask as 192.168.1.2, 255.255.255.0
192.168.1.2, 255.255.255.0
Configure PC(Step 2):
Select PC0 and go to FastEthernet0 in config and assign IP address and subnet mask as ________, ________.
FastEthernet0
Configure PC(Step 3):
Select PC1 and go to _________ in config and assign IP address and subnet mask as 192.168.1.3, 255.255.255.0
192.168.1.3, 255.255.255.0
Configure PC(Step 3):
Select PC1 and go to FastEthernet0 in config and assign IP address and subnet mask as ________, ________.
Global Settings
Configure PC(Step 4):
For both the PCs (PC0, PC1) go to _________ in config and Assign default gateway as 192.168.1.1
192.168.1.1
Configure PC(Step 4):
For both the PCs (PC0, PC1) go to Global Settings in config and Assign default gateway as _________.
Server
Configure Server0 (Step 1):
Select a _______ from the end devices and drag and drop to the workspace.
Global Settings, 10.0.0.1
Configure Server0 (Step 2):
Go to the __________ in config and assign the default gateway as __________.
FastEthernet0, 10.0.0.2, 255.0.0.0
Configure Server0 (Step 3):
Go to ___________ and assign an IP address and subnet mask of ___________, ___________
Services, FTP
Configure Server0 (Step 4):
Go to ________ and open ________ Service.
Username, password
Configure Server0 (Step 5):
Create a _______ and _______.
Permissions (write, read, delete, rename, list)
Configure Server0 (Step 6):
Select all the ___________ and add the user.
2950-24 Switch
Configure switch and make connections (Step 1):
Select a ___________ from the network devices and drag and drop to the workspace.
Copper straight-through cable
What type of connection wire should be used between different devices?
Copper cross-through cable
What type of connection wire should be used between same devices?
ping command in the CLI
How do we check connections from PC0 to other hosts in the network?
C:\> ftp server_ip
How do we execute an FTP server in the CLI?
ftp>put File1.txt
How do Writing(uploading) the File1.txt into a FTP server during an FTP using the CLI?
ftp>get File1.txt
How do Reading(Downloading) the File1.txt into a FTP server using the CLI?
ftp>dir
How do you see the directories or the files in an FTP server?
C:\> ftp 10.0.0.2
Trying to connect...10.0.0.2
Connected to 10.0.0.2
220 - Welcome to PT Ftp server
Username: Michael
331 - Username ok, need password
Password: *****
230 - Logged in
(passive mode On)It is the CLI commands used to sign in to an FTP server.
enable
Command used in User EXEC mode (Router>) to enter Privileged EXEC mode (Router#).