07-12-2010 09:34 PM
07-12-2010 09:46 PM
I explicitly have the following configuration:
delete interfaces ge-0/0/1 unit 0 family ethernet-switching
Would not that turn off switch on ge-0/0/1? All I need is configure it as L3 un-tagged interface.
07-12-2010 09:50 PM
07-12-2010 10:08 PM
Hi, this is current configuration of ge0/0/1
ge-0/0/1 {
unit 0 {
family ethernet-switching;
}
}
I think the following configuration may caused commit failure when I try to convert this interface to a simple L3 interface:
set vlans default interface ge-0/0/1.0
What is this for?! why "delete interfece ge-0/0/1 unit 0 family ethernet-switching" did not remove this configuration? can I delete this VLAN?
07-12-2010 10:16 PM
I am really not sure exactly what it is you want.
If you want to setup a simple IP interface on ge-0/0/1 with a static IP use my first example and delete out the VLAN interface assuming you arnt doing anything else with it.
Lets walk through the following
1. the speed is set to 10
2. it is set to full duplex
3. Auto detect is turned off
4. the inet routing instance has an ip of 10.0.0.1
ge-0/0/1 {
speed 10m;
link-mode full-duplex;
gigether-options {
no-auto-negotiation;
}
unit 0 {
family inet {
address 10.0.0.1/30;
}
}
}