how to add port groups to Eaps Domain in Netsight ?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-03-2016 03:19 PM
In Ridgeline you would create port groups and associate those port groups to a defined Eaps Domain and run a script to add a new vlan to those ports. How would you perform this in Netsight 6.3 ?
18 REPLIES 18
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-03-2016 03:59 PM
Thank you for the information. Are ports 1:6 and 2:6 already members of vlan 'burke_commerce'? If they are not, they need to be added to the vlan. If you have not already done so, these same ports need to be added to the EAPS control vlan too.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-03-2016 03:59 PM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-03-2016 03:59 PM
My script on NetSight
#@MetaDataStart
#############################################################################################
# Define your user parameters in this section. For reference, see EPICenter bundled scripts.
#############################################################################################
#@VariableFieldLabel (description = "VLAN Name",
# type = String,
# scope = global,
# required = yes
# )
set var vlanname ""
##############################################################################################
#@VariableFieldLabel (description = "VLAN Tag", type = String,
# scope = global,
# required = yes
# )
set var vlannametag ""
#@MetaDataEnd
# Enter all CLI commands from here
create vlan $vlanname
config vlan $vlanname tag $vlannametag
disable igmp snooping vlan $vlanname
config eaps burke_commerce add protected $vlanname
config $vlanname add port $port tagged
regexp {.*Adding EAPS ring ports to a VLAN could cause a loop.*} ${CLI.OUT} foundit
IF ([info exists foundit]) THEN
CLI y
ENDIF
#@MetaDataStart
#############################################################################################
# Define your user parameters in this section. For reference, see EPICenter bundled scripts.
#############################################################################################
#@VariableFieldLabel (description = "VLAN Name",
# type = String,
# scope = global,
# required = yes
# )
set var vlanname ""
##############################################################################################
#@VariableFieldLabel (description = "VLAN Tag", type = String,
# scope = global,
# required = yes
# )
set var vlannametag ""
#@MetaDataEnd
# Enter all CLI commands from here
create vlan $vlanname
config vlan $vlanname tag $vlannametag
disable igmp snooping vlan $vlanname
config eaps burke_commerce add protected $vlanname
config $vlanname add port $port tagged
regexp {.*Adding EAPS ring ports to a VLAN could cause a loop.*} ${CLI.OUT} foundit
IF ([info exists foundit]) THEN
CLI y
ENDIF
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-03-2016 03:59 PM
You can upload an image to a post using the icon that looks like a camera when typing your post.
Were there any messages in the switch log indicating a problem as the script ran? If there are some, please post the output of those messages too.
Were there any messages in the switch log indicating a problem as the script ran? If there are some, please post the output of those messages too.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-03-2016 03:59 PM
a total of 3 switches and 6 ports
