0
|
1 |
-------
|
|
2 |
Network
|
|
3 |
-------
|
|
4 |
|
|
5 |
New Switches :
|
|
6 |
2 x DELL N1548 Gbit/s Switch 48 Port
|
|
7 |
2 x DELL N4064F 10 Gbit/s Switch 48 Port
|
|
8 |
|
|
9 |
|
|
10 |
.. uml::
|
|
11 |
|
|
12 |
@startuml
|
|
13 |
|
|
14 |
header
|
|
15 |
<font color=red>Still in progress</font>
|
|
16 |
endheader
|
|
17 |
|
|
18 |
cloud "FHI-Net" as FHINet <<"141.14.128.0/20">> {
|
|
19 |
["Switch xx, Port yy"] as SP_xx_yy
|
|
20 |
["Switch XX, Port YY"] as SP_XX_YY
|
|
21 |
["Switch AA, Port AA"] as SP_AA_AA
|
|
22 |
["Switch BB, Port BB"] as SP_BB_BB
|
|
23 |
}
|
|
24 |
|
|
25 |
|
|
26 |
cloud "Q-Management" as mgmt <<192.168.1.0/24>> {
|
|
27 |
node q <<Frontend>> {
|
|
28 |
[emx1] <<192.168.1.1>>
|
|
29 |
}
|
|
30 |
' node "node-0-0-sp" as OOSP <<"x.x.x.x">>
|
|
31 |
' node "node-0-1-sp" as 01SP <<"y.y.y.y">>
|
|
32 |
}
|
|
33 |
|
|
34 |
'cloud "Q-Interconnect" <<"10.1.1.0/24">> {
|
|
35 |
' node "q_p7p1" <<"10.1.1.1">>
|
|
36 |
'}
|
|
37 |
|
|
38 |
|
|
39 |
node "q-msw-01" as qmsw01 {
|
|
40 |
[Port_01_48] <<"141.14.128.59">>
|
|
41 |
}
|
|
42 |
|
|
43 |
|
|
44 |
|
|
45 |
|
|
46 |
node "q-msw-02"
|
|
47 |
node "q-dsw-01"
|
|
48 |
node "q-dsw-02"
|
|
49 |
|
|
50 |
[SP_xx_yy] <-down-> [Port_01_48] : "1Gbit/s"
|
|
51 |
qmsw01 <-down-> mgmt : "1Gbit/s"
|
|
52 |
@enduml
|
|
53 |
|
|
54 |
Configuring the switches
|
|
55 |
========================
|
|
56 |
The Dell Networking N151548 front panel provides 48 Gigabit Ethernet RJ-45 ports and
|
|
57 |
four SFP+ 10G ports. For the inital configuration the console port which is located on the right side
|
|
58 |
of the front panel has to be used. The default rate is 9600 baud (8N1).
|
|
59 |
This switch will be used to connect the iDrac-Interfaces. Should be reachable from the FHI-Net.
|
|
60 |
|
|
61 |
Connect a terminal to the console and reset the switch (right side of the front panel)::
|
|
62 |
|
|
63 |
wait for Easy Setup Wizard
|
|
64 |
do not configure SNMP
|
|
65 |
the setup user account, root/k0b...en
|
|
66 |
set up VLAN1 routing
|
|
67 |
IP: 141.14.128.59 for q-msw-01 (rack 3)
|
|
68 |
IP: 141.14.128.60 for q-msw-02 (rack 1)
|
|
69 |
Netmask: /20
|
|
70 |
Default Gateway: 141.14.128.16
|
|
71 |
|
|
72 |
To enable ssh::
|
|
73 |
|
|
74 |
console>enable
|
|
75 |
console#config
|
|
76 |
console(config)#crypto-key generate rsa
|
|
77 |
console(config)#crypto-key generate dsa
|
|
78 |
console(config)#ip ssh server
|
|
79 |
|
|
80 |
Now make sure that the configuration is ok::
|
|
81 |
|
|
82 |
humma-kavula:q-doc junkes$ ssh root@q-msw-01
|
|
83 |
The authenticity of host 'q-msw-01 (141.14.128.59)' can't be established.
|
|
84 |
RSA key fingerprint is SHA256:Ss4qzEjy0fmE8U/7GM5wqxIcKjYkgUUdl9y5EAsGemM.
|
|
85 |
Are you sure you want to continue connecting (yes/no)? yes
|
|
86 |
Warning: Permanently added 'q-msw-01,141.14.128.59' (RSA) to the list of known hosts.
|
|
87 |
root@q-msw-01's password:
|
|
88 |
|
|
89 |
console>show ip interface vlan 1
|
|
90 |
|
|
91 |
Routing interface status....................... Up
|
|
92 |
Primary IP Address............................. 141.14.128.59/255.255.240.0
|
|
93 |
Method......................................... Manual
|
|
94 |
Routing Mode................................... Enable
|
|
95 |
Administrative Mode............................ Enable
|
|
96 |
Forward Net Directed Broadcasts................ Disable
|
|
97 |
Proxy ARP...................................... Enable
|
|
98 |
Local Proxy ARP................................ Disable
|
|
99 |
Active State................................... Active
|
|
100 |
MAC Address.................................... E4F0.0409.34FC
|
|
101 |
Encapsulation Type............................. Ethernet
|
|
102 |
IP MTU......................................... 1500
|
|
103 |
Bandwidth...................................... 10000 kbps
|
|
104 |
Destination Unreachables....................... Enabled
|
|
105 |
ICMP Redirects................................. Enabled
|
|
106 |
|
|
107 |
To make the things easyer the http - interface should be enabled too::
|
|
108 |
|
|
109 |
humma-kavula:q-doc junkes$ ssh root@q-msw-01
|
|
110 |
root@q-msw-01's password:
|
|
111 |
|
|
112 |
console>enable
|
|
113 |
|
|
114 |
console#config
|
|
115 |
|
|
116 |
console(config)#crypto certificate 1 generate
|
|
117 |
|
|
118 |
console(config-crypto-cert)#key-generate
|
|
119 |
|
|
120 |
console(config-crypto-cert)#exit
|
|
121 |
|
|
122 |
Certificate Generation Successful..
|
|
123 |
|
|
124 |
console(config)#ip http secure-server
|
|
125 |
|
|
126 |
Don't forget to save the configuration !::
|
|
127 |
|
|
128 |
console(config)#exit
|
|
129 |
|
|
130 |
console#wr
|
|
131 |
|
|
132 |
This operation may take few minutes.
|
|
133 |
Management interfaces will not be available during this time.
|
|
134 |
|
|
135 |
Are you sure you want to save? (y/n) y
|
|
136 |
|
|
137 |
|
|
138 |
Configuration Saved!
|
|
139 |
console#
|
|
140 |
|
|
141 |
Problem: Self signed certificates not trusted on new browsers. Cert generated for 0.0.0.0 (To be checked)
|
|
142 |
|
|
143 |
The same for the N4064F gigabit switches. These switches are equipped with a OOB ethernet interface. So no VLAN1 routing
|
|
144 |
must be used.
|
|
145 |
|
|
146 |
q-dsw-01 -> 141.14.128.61/20
|
|
147 |
q-dsw-02 -> 141.14.128.62/20
|
|
148 |
|
|
149 |
|