Changes between Version 13 and Version 14 of ipv6v4config


Ignore:
Timestamp:
May 9, 2017, 5:25:10 PM (8 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ipv6v4config

    v13 v14  
    66=== Remote Access ===
    77
    8 When you are working in the Virtualbox interface you can't copy and paste commands in to to that interface. You might have experienced this already. What you can do is you can remote log in to your campuslan VM.
     8When you are working in the Virtualbox interface you can't copy and paste commands in to that interface. You might have experienced this already. What you can do is you can remote log in to your campuslan VM.
    99
    1010'''Windows'''
     
    491491    * You should get a reply
    492492    * Try the same in Dept2PC
     493
     494==== Connecting LAN to the Router ====
     495
     496Your Campus LAN is connecting to the outside through a border router. Your CampusCore switch connects to this border router. In this link router's fast ethernet interface IP connects with the Core switch's vlan interface IP. Let's start configuring this link starting from the CampusCore.
     497
     498 - Login to CampusCore switch and switch to config mode
     499 - Create VLAN 255 and name it Public
     500{{{
     501CampusCore(config)# vlan 255
     502CampusCore(config-vlan)# name Public
     503CampusCore(config-vlan)# exit
     504}}}
     505 - Then assign the IP Address to the VLAN interface. Get the IP from the [#point1 table]. In the real situation this VLAN could be a public IP range which is assign to your Institute. In this Lab we are using a private IP block.
     506{{{
     507CampusCore(config)#interface vlan 255
     508CampusCore(config-if)# ip address 10.0.255.254 255.255.255.0
     509CampusCore(config-if)# exit
     510}}}
     511 - Next configure fast ethernet interface which connects to the Core device and give a description.You can find then from the [#point2 table]
     512{{{
     513CampusCore(config)#interface FastEthernet 1/15
     514CampusCore(config-if)#switchport mode access
     515CampusCore(config-if)#switchport access vlan 255
     516CampusCore(config-if)#description link to Border Router
     517CampusCore(config-if)#exit
     518}}}
     519 - Now you have done CampusCore configuration. Let's start routers Configuration.
     520 - Login to AccessRt Router and switch to config mode
     521 - Router's IP allocation is as follows. You can get your Router's IP address from here
     522||= Interface Name =||= IP Address =||
     523||Fast Ethernet 0/0 ||10.0.255.254/24||
     524||Fast Ethernet 0/1 ||<Your Routers WAN IP>||
     525 - Let's configure the LAN port (fa 0/0)
     526{{{
     527AccessRt(config)#interface fastEthernet 0/0
     528AccessRt(config-if)#ip address 10.0.255.254 255.255.255.0
     529AccessRt(config-if)#description LAN Port connects to CampusCore
     530AccessRt(config-if)#no shutdown
     531AccessRt(config-if)#exit
     532}}}
     533 - Configure the WAN port (fa 0/1)
     534{{{
     535AccessRt(config)#interface fastEthernet 0/1
     536AccessRt(config-if)#ip address x.x.x.x 255.255.255.0
     537AccessRt(config-if)#description WAN Port Bridged with campuslan host
     538AccessRt(config-if)#no shutdown
     539AccessRt(config-if)#exit
     540}}}
     541 - You have successfully finished connecting CampusCore to the AccessRt router. Let's verify the connectivity using the ping command.
     542 - Go to AccessRt and ping to CampusCore switch's VLAN 255 Interface IP
     543{{{
     544ping 10.0.255.253
     545}}}
     546 - Now Check the routers connectivity in WAN port. Ping to the WAN Gateway
     547{{{
     548ping 192.248.6.254
     549}}}