On this page
CLI structure and modesFirst 10 minutes on an unfamiliar Foundry switchMost used show commandsBasic setup: hostname, management IP, gatewayVLAN and trunk shapeServerIron specificsWhere the documentation wentQuestions01 /CLI structure and modes
A session opens in user EXEC with a > prompt and read-only show commands. enable asks for the super-user password and moves to privileged EXEC, marked by #. configure terminal enters global configuration, shown as (config)#; from there interface ethernet 1/1, vlan 10 or router ospf enter sub-modes. exit steps back one level; end returns to privileged EXEC. Ports are always slot/port: on a fixed switch the slot is 1, on a chassis it is the module position. Ranges use ethernet 1/1 to 1/8. Commands abbreviate to any unique prefix.
SSH@core1>enable Password: SSH@core1#configure terminal SSH@core1(config)#interface ethernet 1/1 SSH@core1(config-if-e1000-1/1)#end SSH@core1#write memory
02 /First 10 minutes on an unfamiliar Foundry switch
- 01
Connect and identify
Console in at 9600 8N1 (see console and recovery) or SSH to the management address. Run
show versionfor platform and release;show chassisorshow modulefor power, fans, temperature and cards. - 02
Read the configuration
show running-config, thenshow configurationfor the startup copy. Differences mean unsaved changes by a previous administrator. Copy it off the box before touching anything. - 03
Map the ports
show interfaces brieflists every port with state, speed, duplex, tag status and name.show vlanshows tagged and untagged membership.show trunkorshow lagshows aggregation groups. - 04
Find what is connected
show mac-addressgives the learned table;show arpandshow ip interfacecover Layer 3. On a routing image addshow ip routeand the OSPF or BGP neighbour commands. - 05
Check the logs
show logprints the buffered syslog with link flaps, authentication failures and hardware events. Setsntp serverearly. - 06
Secure and save
Confirm telnet and HTTP are off and SSH is on (hardening), then
write memory. Nothing survives a reload otherwise.
03 /Most used show commands
| Task | Command | Notes |
|---|---|---|
| Platform, software, uptime | show version | Boot and flash image names, serial number |
| Current configuration | show running-config | show configuration for the saved copy |
| Port state summary | show interfaces brief | Link, speed, duplex, tag status, port name |
| VLAN membership | show vlan | Tagged and untagged ports per VLAN |
| MAC table | show mac-address | Add ethernet 1/1 or vlan 10 to filter |
| ARP and Layer 3 interfaces | show arp, show ip interface | Layer 3 images and VE interfaces |
| Routing table | show ip route | Plus show ip ospf and show ip bgp on routers |
| ServerIron state | show server real, show server virtual, show server bind | Health, bindings, session counts |
04 /Basic setup: hostname, management IP, gateway
A Layer 2 switch image takes one management address at global level. A Layer 3 image puts addresses on virtual interfaces: create the VLAN, attach a router-interface ve, then address the VE.
configure terminal hostname access-sw1 ip address 10.10.0.21 255.255.255.0 ip default-gateway 10.10.0.1 write memory
configure terminal hostname core1 vlan 10 name servers by port tagged ethernet 1/1 to 1/4 untagged ethernet 1/5 router-interface ve 10 interface ve 10 ip address 10.10.10.1/24 ip route 0.0.0.0/0 10.10.0.1 write memory
05 /VLAN and trunk shape
VLANs are created with vlan N name X by port and ports are placed with tagged or untagged inside the VLAN, not on the interface. A port carrying several tagged VLANs is what other vendors call a trunk; IronWare uses trunk for link aggregation, configured as trunk ethernet 1/1 to 1/2 on older releases and as lag on later ones. The VLAN and link aggregation pages cover both.
06 /ServerIron specifics
ServerIron images add the server command tree. server real NAME IP defines a pool member and port http under it opens a port with a health check. server virtual NAME VIP defines the virtual server and bind http real1 http real2 http maps ports. The show server commands report health and bindings. Worked configurations are on the server load balancing page.
07 /Where the documentation went
The old site kept everything under /services/documentation/: configuration guides per platform, separate sub-trees for ServerIron, command references for each family including a PDF command reference for AccessIron, MIB downloads, release notes and, under the FAQ pages, Visio stencils of every chassis and fixed unit. After 2009 the tree moved to Brocade portals, and after 2017 the remaining material split between Extreme Networks and Ruckus/CommScope. Web archive captures hold much of the original tree. FoundryNet explains the commands and does not host the PDFs.
FoundryNet is an independent reference. Command shapes here are illustrative and not reproduced from vendor documentation; exact syntax varies by platform and release.
08 /Questions
How do I save the configuration on a Foundry switch?
Use write memory from privileged EXEC. It copies the running configuration to the startup configuration in flash; copy running-config startup-config does the same. Unsaved changes are lost at reload, so save before any maintenance window.
Why does interface ethernet 1 not work?
IronWare always uses slot/port notation. On a fixed switch the slot is 1, so the first port is ethernet 1/1. On a chassis the slot is the module position. Ranges are written with the word to, as in ethernet 1/1 to 1/24.
What is the difference between a trunk and a tagged port in IronWare?
In IronWare, trunk means link aggregation, several physical ports bundled as one. A port carrying multiple 802.1Q VLANs is simply a tagged port, configured inside each VLAN. Later releases renamed aggregation to lag; the VLAN model did not change.
How do I assign an IP address on a Layer 3 Foundry switch?
Create the VLAN, add router-interface ve N inside it, then enter interface ve N and set ip address with a mask or prefix length. Layer 2 images instead take a single global ip address plus ip default-gateway for management.
Where can I find the original Foundry command references?
In web archive captures of www.foundrynet.com/services/documentation/ and in the documentation portals of Extreme Networks (NetIron and MLX) and Ruckus/CommScope (FastIron and ICX), usually behind a login. This site does not host the PDFs.
Sources
- Original Foundry documentation (historical): IronWare configuration guides and command references, /services/documentation/ tree, 2000 to 2008
- Original Foundry documentation (historical): ServerIron CLI global configuration reference
- Web archive captures of www.foundrynet.com/services/documentation/, 2001 to 2009
- Ruckus FastIron command reference, successor documentation, CommScope, current