Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-10 Thread Bjørn Mork
Cord MacLeod cordmacl...@gmail.com writes: Park yourself in edit vlans vlan xxx The run this on your local Linux machine: for i in `seq 0 23`; do echo set interface ge-0/0/$i; done Or just do it on the system everyone has: % uname -sr JUNOS 9.5R2.7 % awk 'BEGIN {for (x=0; x=23; x++) print

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-10 Thread Chuck Anderson
On Fri, Jul 10, 2009 at 11:53:13AM +0200, Bjørn Mork wrote: Seriously though, you should do mass edits. Or edits at all. You should use an offline configuration system and upload configuration diffs from these system after following some sort of quality assurance procedure. Direct edits are

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-10 Thread Bjørn Mork
Chuck Anderson c...@wpi.edu writes: On Fri, Jul 10, 2009 at 11:53:13AM +0200, Bjørn Mork wrote: Seriously though, you should do mass edits. Or edits at all. You should use an offline configuration system and upload configuration diffs from these system after following some sort of quality

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-07 Thread Shane Ronan
interfaces... Dan -Original Message- From: juniper-nsp-boun...@puck.nether.net [mailto:juniper-nsp-boun...@puck.nether.net ] On Behalf Of Matt Stevens Sent: Thursday, July 02, 2009 9:19 PM To: Matt Stevens; juniper-nsp@puck.nether.net Subject: Re: [j-nsp] Add vlan to multiple interfaces

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-07 Thread Yevgeniy Voloshin
Hi Matt, did you already check Jeff Doyle on IP Routing blog: Using JUNOS Macros by jdoyle on Thu, 09/18/08 - 5:33pm. http://www.networkworld.com/community/node/32900 May be macro script can help you? --- Yev. 2009/7/2 Matt Stevens m...@elevate.org Is there an easy way to add a new VLAN to

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-04 Thread Pavel Lunin
Hi, I didn't checked myself whether Juniper realized port-range feature (I have no access to the lab due to the weekend came up) , but I remember they promised to do so in 'future release' some half a year ago. So if they didn't yet it might be a conscious move, though hard to guess why. But

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-03 Thread Dan Farrell
Subject: Re: [j-nsp] Add vlan to multiple interfaces on EX series Sigh...from everyone's answers it appears the short answer to this question is no. I guess I'll take this up with my account team. Thanks everyone! -- matt On 7/2/09 12:25 PM, Matt Stevens m...@elevate.org wrote: Is there an easy

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-02 Thread Malte von dem Hagen
Hi, Matt Stevens schrieb: Is there an easy way to add a new VLAN to multiple interfaces on the EX series switches? I'd like to be able to use a port range for both adding vlans to trunk ports and putting access ports into a specific vlan. yes, I definitely like to have a interface range as

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-02 Thread Bjørn Tore
Malte von dem Hagen skrev: Hi, Matt Stevens schrieb: Is there an easy way to add a new VLAN to multiple interfaces on the EX series switches? I'd like to be able to use a port range for both adding vlans to trunk ports and putting access ports into a specific vlan. yes, I definitely

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-02 Thread Matt Stevens
Sigh...from everyone's answers it appears the short answer to this question is no. I guess I'll take this up with my account team. Thanks everyone! -- matt On 7/2/09 12:25 PM, Matt Stevens m...@elevate.org wrote: Is there an easy way to add a new VLAN to multiple interfaces on the EX

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-02 Thread Cord MacLeod
Park yourself in edit vlans vlan xxx The run this on your local Linux machine: for i in `seq 0 23`; do echo set interface ge-0/0/$i; done That's the way I mass edit. On Jul 2, 2009, at 6:18 PM, Matt Stevens wrote: Sigh...from everyone's answers it appears the short answer to this question

Re: [j-nsp] Add vlan to multiple interfaces on EX series

2009-07-02 Thread Charles Sprickman
On Thu, 2 Jul 2009, Cord MacLeod wrote: Park yourself in edit vlans vlan xxx The run this on your local Linux machine: for i in `seq 0 23`; do echo set interface ge-0/0/$i; done Or on another unix without seq, you may find jot: jot -w set interface ge-0/0/ 23 0 -data in quotes is text to