Changes between Version 5 and Version 6 of Internal/OpenFlow/Notes


Ignore:
Timestamp:
Jul 17, 2009, 2:55:44 PM (15 years ago)
Author:
akoshibe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OpenFlow/Notes

    v5 v6  
    3939 * can a virtual switch be loaded with a default flow table that would allow it to function, at least until its table times out?
    4040
    41 === SSL setup, things top know for the next day. (7/13) ===
     41=== SSL setup, things to know for the next day. (7/13) ===
    4242using this site as reference: http://www.debian-administration.org/article/Creating_and_Using_a_self_signed__SSL_Certificates_in_debian 
    4343
     
    7878
    7979==== VLAN 888 ====
    80 arbitrary VLAN for OFP controller, since nothing probably uses that high a VLAN number. Currently only gi 0/42 (formerly one of the trunk ports)
     80arbitrary VLAN for OFP controller, since nothing probably uses that high a VLAN number. Currently only port 0/42 (formerly one of the trunk ports)
    8181{{{
    8282sw-sb09(config)# vlan 888
     
    103103}}}
    104104this will probably not need a route specified for it since the controller is directly attached to the switch.   
     105
     106=== formal controller VLAN: VLAN100. (6/14) ===
     107
     108VLAN 888 was removed since VLAN 100 is the formal controller VLAN, as decided by discussion.
     109{{{
     110sw-sb09(config-if)# sh interface gi 0/42
     111interface gigabitethernet 0/42
     112  switchport mode access
     113  switchport access vlan 888
     114!
     115sw-sb09(config-if)# interface gigabitethernet 0/42
     116sw-sb09(config-if)# no sw acc vlan 888
     117!sw-sb09(config-if)# switchport mod trunk
     118!sw-sb09(config-if)# swi trunk all vlan 1,3,27,28
     119!sw-sb09(config-if)# swi tru nat vlan 1
     120!sw-sb09(config-if)# save
     121sw-sb09(config-if)# no vlan 888
     122!sw-sb09(config)# vlan 100
     123!sw-sb09(config-vlan)# name "OpenFlow control VLAN"
     124!sw-sb09(config-vlan)# save
     125}}}
    105126 
    106127[[BR]]