Changes between Version 39 and Version 40 of Internal/OpenFlow/HostSetup
- Timestamp:
- Jun 2, 2010, 9:33:51 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/OpenFlow/HostSetup
v39 v40 135 135 The selftest ''does not'' work in Ubuntu. so don't try it. 136 136 137 === II: Setup - !OpenFlow components. === 138 The !OpenFlow wiki on CentOS NetFPGA setup were followed in conjunction with the netfpga site wiki for the Tunneling OpenFlow NetFPGA. Stes are reiterated here since nothing is permanent. 137 == II: Setup - !OpenFlow components. == 138 The !OpenFlow wiki on CentOS NetFPGA setup were followed in conjunction with the netfpga site wiki for the Tunneling !OpenFlow NetFPGA. Stes are reiterated here since nothing is permanent. 139 * [http://netfpga.org/foswiki/bin/view/NetFPGA/OneGig/TunnelingOpenFlowNetFPGA100 Tunneling !OpenFlow NetFPGA ] 140 * !OpenFlow setup on [http://www.openflowswitch.org/wk/index.php/Ubuntu_Install Ubuntu] and [http://www.openflowswitch.org/wk/index.php/CentOS_NetFPGA_Install CentOS] 139 141 140 142 ==== 1. dependencies. ==== … … 147 149 * m4 148 150 151 ==== 2. !OpenFlow package installation ==== 152 This happens in the same directory as the netfpga install (here, /home/test). From git repository (automatically pulls the newest version): 153 {{{ 154 git clone git://openflowswitch.org/openflow.git 155 cd openflow 156 ./boot.sh 157 }}} 149 158 150 151 159 To make NetFPGA compatible: 160 {{{ 161 ./configure --enable-hw-lib=nf2 162 }}} 163 164 Remove avahi-daemon and disable IPv6: 165 {{{ 166 sudo apt-get remove avahi-daemon 167 }}} 168 in /etc/sysctl.conf add 169 {{{ 170 net.ipv6.conf.all.disable_ipv6 = 1 171 net.ipv6.conf.default.disable_ipv6 = 1 172 }}} 173 and in /etc/modprobe.d/blacklist.conf 174 {{{ 175 blacklist net-pf-10 176 blacklist ipv6 177 }}} 152 178 [[BR]] 153 179 [[BR]]