blob: 22afa65fff836378280622899497c24439337248 [file] [log] [blame]
Andreas Papazois92e4a042016-02-24 15:29:30 +02001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Andreas Papazois92e4a042016-02-24 15:29:30 +02003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.cli.net;
17
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
20import org.apache.karaf.shell.commands.Option;
21import org.onlab.packet.VlanId;
22import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.net.DeviceId;
24import org.onosproject.net.behaviour.InterfaceConfig;
25import org.onosproject.net.driver.DriverHandler;
26import org.onosproject.net.driver.DriverService;
27
28/**
29 * Removes configured interface from a device.
30 */
31@Command(scope = "onos", name = "device-remove-interface",
32 description = "Removes an interface configuration from a device")
33public class DeviceInterfaceRemoveCommand extends AbstractShellCommand {
34
35 private static final String REMOVE_VLAN_SUCCESS =
36 "VLAN %s removed from device %s interface %s.";
37 private static final String REMOVE_VLAN_FAILURE =
38 "Failed to remove VLAN %s from device %s interface %s.";
39
40 private static final String REMOVE_TRUNK_SUCCESS =
41 "Trunk mode removed for VLAN %s on device %s interface %s.";
42 private static final String REMOVE_TRUNK_FAILURE =
43 "Failed to remove trunk mode for VLAN %s on device %s interface %s.";
44
45 @Argument(index = 0, name = "uri", description = "Device ID",
46 required = true, multiValued = false)
47 private String uri = null;
48
49 @Argument(index = 1, name = "interface",
50 description = "Interface name",
51 required = true, multiValued = false)
52 private String portName = null;
53
54 @Argument(index = 2, name = "vlan",
55 description = "VLAN ID",
56 required = true, multiValued = false)
57 private String vlanString = null;
58
59 @Option(name = "-t", aliases = "--trunk",
60 description = "Remove trunk mode for VLAN",
61 required = false, multiValued = false)
62 private boolean trunkMode = false;
63
64 @Override
65 protected void execute() {
66 DriverService service = get(DriverService.class);
67 DeviceId deviceId = DeviceId.deviceId(uri);
68 DriverHandler h = service.createHandler(deviceId);
69 InterfaceConfig interfaceConfig = h.behaviour(InterfaceConfig.class);
70
71 VlanId vlanId = VlanId.vlanId(Short.parseShort(vlanString));
72
73 if (trunkMode) {
74 // Trunk mode for VLAN to be removed.
75 if (interfaceConfig.removeTrunkInterface(deviceId, portName, vlanId)) {
76 print(REMOVE_TRUNK_SUCCESS, vlanId, deviceId, portName);
77 } else {
78 print(REMOVE_TRUNK_FAILURE, vlanId, deviceId, portName);
79 }
80 return;
81 }
82
83 // Interface to be removed from VLAN.
84 if (interfaceConfig.removeInterfaceFromVlan(deviceId, portName, vlanId)) {
85 print(REMOVE_VLAN_SUCCESS, vlanId, deviceId, portName);
86 } else {
87 print(REMOVE_VLAN_FAILURE, vlanId, deviceId, portName);
88 }
89 }
90
91}