blob: 83969a81746731ef0d3259eaa2588c811aa479fc [file] [log] [blame]
Madan Jampanic27b6b22016-02-05 11:36:31 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Madan Jampanic27b6b22016-02-05 11:36:31 -08003 *
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 */
Jonathan Hart1d006392016-02-11 09:12:56 -080016package org.onosproject.cli.net;
Madan Jampanic27b6b22016-02-05 11:36:31 -080017
Madan Jampanic27b6b22016-02-05 11:36:31 -080018import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
Jonathan Hart1d006392016-02-11 09:12:56 -080020import org.onlab.packet.IpAddress;
Madan Jampanic27b6b22016-02-05 11:36:31 -080021import org.onosproject.cli.AbstractShellCommand;
Madan Jampanic27b6b22016-02-05 11:36:31 -080022import org.onosproject.net.ConnectPoint;
23import org.onosproject.net.mcast.McastRoute;
24import org.onosproject.net.mcast.MulticastRouteService;
25
26/**
27 * Installs a source, multicast group flow.
28 */
29@Command(scope = "onos", name = "mcast-join",
30 description = "Installs a source, multicast group flow")
31public class McastJoinCommand extends AbstractShellCommand {
32
Pier Luigib29144d2018-01-15 18:06:43 +010033 // Format for group line
34 private static final String FORMAT_MAPPING = "Added the mcast route: " +
35 "origin=%s, group=%s, source=%s";
36
Madan Jampanic27b6b22016-02-05 11:36:31 -080037 @Argument(index = 0, name = "sAddr",
38 description = "IP Address of the multicast source. '*' can be used for any source (*, G) entry",
39 required = true, multiValued = false)
40 String sAddr = null;
41
42 @Argument(index = 1, name = "gAddr",
43 description = "IP Address of the multicast group",
44 required = true, multiValued = false)
45 String gAddr = null;
46
47 @Argument(index = 2, name = "ingressPort",
48 description = "Ingress port of:XXXXXXXXXX/XX",
49 required = false, multiValued = false)
50 String ingressPort = null;
51
52 @Argument(index = 3, name = "ports",
53 description = "Egress ports of:XXXXXXXXXX/XX...",
54 required = false, multiValued = true)
55 String[] ports = null;
56
57 @Override
58 protected void execute() {
Jonathan Hart1d006392016-02-11 09:12:56 -080059 MulticastRouteService mcastRouteManager = get(MulticastRouteService.class);
Madan Jampanic27b6b22016-02-05 11:36:31 -080060
Jonathan Hart1d006392016-02-11 09:12:56 -080061 McastRoute mRoute = new McastRoute(IpAddress.valueOf(sAddr),
62 IpAddress.valueOf(gAddr), McastRoute.Type.STATIC);
Madan Jampanic27b6b22016-02-05 11:36:31 -080063 mcastRouteManager.add(mRoute);
64
Jonathan Hart1d006392016-02-11 09:12:56 -080065 if (ingressPort != null) {
66 ConnectPoint ingress = ConnectPoint.deviceConnectPoint(ingressPort);
67 mcastRouteManager.addSource(mRoute, ingress);
Madan Jampanic27b6b22016-02-05 11:36:31 -080068 }
Jonathan Hart1d006392016-02-11 09:12:56 -080069
70 if (ports != null) {
71 for (String egCP : ports) {
Jonathan Hart1d006392016-02-11 09:12:56 -080072 ConnectPoint egress = ConnectPoint.deviceConnectPoint(egCP);
73 mcastRouteManager.addSink(mRoute, egress);
74
75 }
76 }
Pier Luigib29144d2018-01-15 18:06:43 +010077 printMcastRoute(mRoute);
78 }
79
80 private void printMcastRoute(McastRoute mcastRoute) {
81 print(FORMAT_MAPPING, mcastRoute.type(), mcastRoute.group(), mcastRoute.source());
Madan Jampanic27b6b22016-02-05 11:36:31 -080082 }
83}