17 lines
242 B
Plaintext
Executable File
17 lines
242 B
Plaintext
Executable File
for I in `echo "1"`
|
|
do
|
|
echo "conf t
|
|
vlan 66
|
|
name Kickstart
|
|
|
|
end
|
|
exit
|
|
" > /scripts/autoconfig/tmp/autoconfig.conf
|
|
|
|
/usr/local/bin/cmc -ld /scripts/autoconfig/logs/ -cf /scripts/autoconfig/tmp/autoconfig.conf -n switch-nexus-$I
|
|
done
|
|
|
|
|
|
|
|
|