Changes between Version 7 and Version 8 of Internal/OpenFlow/SwitchConfiguration


Ignore:
Timestamp:
Jul 21, 2009, 3:22:40 AM (15 years ago)
Author:
akoshibe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OpenFlow/SwitchConfiguration

    v7 v8  
    11= Miscellaneous Configurations =
    2 This is a compilation of notes/ remarks on configuration commands that were involved in trying to configure the I8800 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 so it seemed smart to keep an English record of these commands.
     2This 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.
    33 
    44== Topics covered here ==
     
    88 * Updating firmware - command `ppupdate`
    99 * DHCP/BootP relay agent and the IP Helper
    10 == Undoing Configurations ==
     10
     11== Undoing Configurations - And errors encountered ==
    1112Most 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.
    1213=== getting rid of telnet VLAN 4 ===
     
    3637}}}
    3738
     39==  The switch as DHCP server (6/12) ==
     40It 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
    3849== Command `ppupdate` for updating firmware, not actually needed (6/15) ==
    3950The 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:
     
    4657 * `no-reload` - does not reboot switch after update, so changes take place after next restart
    4758 * `file-name` - the firmware, usually named k.img
     59
     60This 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).
    4861
    4962== DHCP/BootP relay agent/IP helper (6/28) ==