cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
778
Views
0
Helpful
5
Replies

How to solve int ip add config problem for ISR1117-4PLTE Router

Chala
Level 1
Level 1

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 !

5 Replies 5

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

I have tried both. still not working.

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

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?

HTH

Rick

Giuseppe Larosa
Hall of Fame
Hall of Fame

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