close
Warning:
Can't synchronize with repository "(default)" (/common/SVN/wimax does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Jun 26, 2013, 4:24:23 PM (10 years ago)
- Author:
-
agosain
- Comment:
-
—
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v167
|
v168
|
|
249 | 249 | |
250 | 250 | == 1.4 GENI WiMAX Omf Site Setup == |
| 251 | |
| 252 | === 1.4.1 Network setup and configuration === |
| 253 | |
| 254 | Three networks |
| 255 | Data |
| 256 | CM |
| 257 | Control |
| 258 | 3 switches, 1 partitioned switch, or single cable out. |
| 259 | |
| 260 | Setup networking as follows on the console host |
| 261 | |
| 262 | {{{ |
| 263 | # This file describes the network interfaces available on your system |
| 264 | # and how to activate them. For more information, see interfaces(5). |
| 265 | |
| 266 | # The loopback network interface |
| 267 | auto lo |
| 268 | iface lo inet loopback |
| 269 | |
| 270 | # The CM network interface |
| 271 | auto eth1 |
| 272 | iface eth1 inet static |
| 273 | address 10.1.0.254 |
| 274 | netmask 255.255.255.0 |
| 275 | broadcast 10.1.0.255 |
| 276 | |
| 277 | # The Control network interface |
| 278 | auto eth3 |
| 279 | iface eth3 inet static |
| 280 | address 10.10.0.254 |
| 281 | netmask 255.255.255.0 |
| 282 | broadcast 10.10.0.255 |
| 283 | |
| 284 | # The Data network interface |
| 285 | auto eth0 |
| 286 | iface eth0 inet static |
| 287 | address 10.20.0.254 |
| 288 | netmask 255.255.255.0 |
| 289 | broadcast 10.20.0.255 |
| 290 | |
| 291 | # The primary network interface |
| 292 | auto eth2 |
| 293 | iface eth2 inet dhcp |
| 294 | }}} |
| 295 | |
| 296 | ==== One unmanaged switch per subnet ==== |
| 297 | [[Image(4Node_1.png, 600)]] |
| 298 | ==== Single managed switch ==== |
| 299 | [[Image(4Node_2.png, 600)]] |
| 300 | ==== Single trunk per node ==== |
| 301 | [[Image(4Node_3.png, 600)]] |
| 302 | |