06-25-2021 09:26 AM - edited 06-25-2021 11:10 AM
I have a brand new C1101 that came with 16.12.4. The command "ip address" is not an option:
>en
Password:
newswitch#conf t
Enter configuration commands, one per line. End with CNTL/Z.
newswitch(config)#int gi0/1/0
newswitch(config-if)#switchport host
switchport mode will be set to access
spanning-tree portfast will be enabled
channel group will be disabled
newswitch(config-if)#ip add?
% Unrecognized command
Can someone provide direction or documentation? The Documentation I have read so far indicates the command should exist.
06-25-2021 09:31 AM
Try below :
int gi0/1/0
no switchport
ip address x.x.x
06-25-2021 09:37 AM
06-25-2021 04:03 PM
apologies, ISR router - I gave in the thought of the Layer 3 switch.
ISR router you need to create Layer 3 SVI and allocate the port to that VLAN as an access port, how we do in switches.
example config :
06-25-2021 10:01 AM
The following are the IP options available under an Interface:
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#int gi 0/1/0
Router(config-if)#ip ?
Interface IP configuration subcommands:
access-group Specify access control for packets
admission Apply Network Admission Control
auth-proxy Apply authenticaton proxy
ddns Configure dynamic DNS
dhcp Configure DHCP parameters for this interface
flow NetFlow related commands
header-compression IPHC options
reassembly Reassembly
rsvp RSVP Interface Commands
rtp RTP parameters
subscriber IP session configuration options
virtual-reassembly Enable Virtual Fragment Reassembly (Input)
virtual-reassembly-out Enable Virtual Fragment Reassembly (Output)
06-25-2021 11:50 AM
I am not sure why this is the case, but it appears that I am only able to apply IP addressed to VLAN interfaces. THE C1101-4P IS A ROUTER!!!!! UGH
06-25-2021 02:01 PM
Yes the C1101 is a router. But it treats its physical interfaces like they were switch ports. It may be a bit cumbersome but you should be able to make it do whatever you want it to do. If you want every physical interface to be in a separate subnet (as is normal on most traditional routers) then just create separate vlans for each physical interface, assign each physical interface to the appropriate vlan, configure IP addresses on each vlan interface.
06-25-2021 02:15 PM
06-25-2021 02:58 PM
06-25-2021 05:39 PM
What is the exact model of the router?
Is the router running SD-WAN image?
06-28-2021 06:26 AM - edited 06-28-2021 06:39 AM
It is not. This is a very simple static route configuration.
cisco C1101-4P (1RU) processor with 1414527K/6147K bytes of memory.
System image file is "bootflash:c1100-universalk9.17.03.03.SPA.bin"
There was an oversight in previous inspections. Gi0/0/0 it is there and does not require vlan allocation like the other ports Gi0/1/0-3. But still odd that the setup wizard would prompt to apply IP address to all the interfaces when that is not possible on this version.
06-28-2021 07:19 AM
Connect the console, reboot and capture all the Logs including your configuration errors and post here.
06-28-2021 08:04 AM
06-28-2021 11:10 AM
If you configuring Gi 0/1/0 to 0/1/3 Layer 2 portrs only you need to configure VLAN SVI inteface as example config
interface Vlan7
ip address 192.168.233 255.255.255.240
!
interface Vlan13
ip address 192.168.156.153 255.255.255.252
!
interface Vlan26
ip address 192.168.197.111 255.255.254.0
!
and allocated interface to VLAN as example :
nterface GigabitEthernet0/1/0
switchport mode access
switchport access vlan 26
spanning-tree portfast
!
interface GigabitEthernet0/1/1
switchport mode access
switchport access vlan 7
spanning-tree portfast
!
interface GigabitEthernet0/1/2
switchport mode access
switchport access vlan 13
spanning-tree portfast
06-28-2021 12:06 PM
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