09-02-2024 01:55 AM
How to assign IP address to each LAN interfaces on ISR1117-4PLTE Router ?
I'm trying to assing an ip add to int g0/1/0-3 of a ASR1117-PLTE Router, but I couldn't find the ' Ip add ' command under the int config. how can I solve this problem.
Help here !
09-02-2024 02:03 AM
these interface is l2 interface you can not assign IP under it
Try use
No switchport
Then try ip add
If not work then use
Vlan svi instead of router l3 port
MHM
09-02-2024 02:30 AM
I have tried both. still not working.
09-02-2024 02:55 AM
When you do
Show ip interface breif
Do you see vlan svi down?
If yes
Assign vlan to port
Add vlan to router db by ""vlan x""
That all my friend
MHM
09-03-2024 08:30 AM
I am sorry that it is still not working. Can you post the details of what you attempted to configure and any response from the device?
09-02-2024 02:27 AM
Hello @Chala ,
the interfaces may be of LAN type with default behavior to act as L2 ports ( switchport command on by default)
you may be able to use
no switchport
and to assign an ip addres directly on it.
If this is not possible , you can use SVI interfaces that are the L3 logical interfaces associated to L2 VLANs
in this second option you need:
to create the VLANs you need one or more .
conf t
vlan 10
name LAN10
b) to associate one or more layer 2 ports to the VLAN using
interface gix/y/z
switch access vlan 10
c) to create the SVI L3 interface vlan 10
interface vlan 10
desc L3 interface for VLAN 10
ip address 10.10.10.1 255.255.255.0
no shut
Hope to help
Giuseppe
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide