Changes between Version 7 and Version 8 of Internal/OpenFlow/SwitchConfiguration
- Timestamp:
- Jul 21, 2009, 3:22:40 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/OpenFlow/SwitchConfiguration
v7 v8 1 1 = Miscellaneous Configurations = 2 This is a compilation of notes/ remarks on configuration commands that were involved in trying to configure the I 8800 to work with the ORBIT network. A majority of configurations steps described here were either never done, or undone after better configuration options were found. Nevertheless, since most of the documentations regarding the IP8800 is in Japanese soit seemed smart to keep an English record of these commands.2 This is a compilation of notes/ remarks on configuration commands that were involved in trying to configure the IP8800 to work with the ORBIT network. A majority of configurations steps described here were either never done/undone after better configuration options were found. Nevertheless, since most of the documentations regarding the IP8800 is in Japanese, it seemed smart to keep an English record of these commands. 3 3 4 4 == Topics covered here == … … 8 8 * Updating firmware - command `ppupdate` 9 9 * DHCP/BootP relay agent and the IP Helper 10 == Undoing Configurations == 10 11 == Undoing Configurations - And errors encountered == 11 12 Most of the time, just adding the command `no` to the beginning of what you see when you do the command `show configuration` will suffice for undoing configurations, but occasionally you get some message that can be a tad cryptic. 12 13 === getting rid of telnet VLAN 4 === … … 36 37 }}} 37 38 39 == The switch as DHCP server (6/12) == 40 It can be made so the switch can provide DHCP services to the hosts on specific VLANs. The commands here make it so there is DHCP service for hosts on VLAN 1. The hosts connected to this VLAN would be made part of group "Test1," whose members are given an address out of a pool of IP addresses from the block 192.168.11.0/24. The lease time for the addresses is 10 minutes. 41 {{{ 42 !(config)# service dhcp vlan 1 43 !(config)# ip dhcp excluded-address 192.168.10.1 44 !(config)# ip dhcp pool Test1 45 !(dhcp-config)# network 192.168.11.0 255.255.255.0 46 !(dhcp-config)# lease 0 0 10 47 }}} 48 38 49 == Command `ppupdate` for updating firmware, not actually needed (6/15) == 39 50 The manual specified the command `ppupdate` for updating the firmware. This command copies new firmware (i.e. downloaded with ftp) on to the switch's flash memory. parameters usable: … … 46 57 * `no-reload` - does not reboot switch after update, so changes take place after next restart 47 58 * `file-name` - the firmware, usually named k.img 59 60 This command would be useful if you were updating the built-in operating system of the switch, but not for the !OpenFlow where the switch is booted from an image saved onto removable media (SD card). 48 61 49 62 == DHCP/BootP relay agent/IP helper (6/28) ==