blob: 5c16a774ffbe43c79140cc4b3e1644844e5fe2ed [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Jonathan Hartbac07a02014-10-13 21:29:54 -070019package org.onlab.onos.sdnip.config;
20
21import java.util.Map;
22
23import org.onlab.packet.IpAddress;
24
25/**
26 * Provides information about the layer 3 properties of the network.
27 * This is based on IP addresses configured on ports in the network.
28 */
29public interface SdnIpConfigService {
30
31 /**
32 * Gets the list of virtual external-facing interfaces.
33 *
34 * @return the map of interface names to interface objects
35 */
36 //public Map<String, Interface> getInterfaces();
37
38 /**
39 * Gets the list of BGP speakers inside the SDN network.
40 *
41 * @return the map of BGP speaker names to BGP speaker objects
42 */
43 public Map<String, BgpSpeaker> getBgpSpeakers();
44
45 /**
46 * Gets the list of configured BGP peers.
47 *
48 * @return the map from peer IP address to BgpPeer object
49 */
50 public Map<IpAddress, BgpPeer> getBgpPeers();
51
52 /**
53 * Gets the Interface object for the interface that packets
54 * to dstIpAddress will be sent out of. Returns null if dstIpAddress is not
55 * in a directly connected network, or if no interfaces are configured.
56 *
57 * @param dstIpAddress destination IP address that we want to match to
58 * an outgoing interface
59 * @return the Interface object if one is found, otherwise null
60 */
61 //public Interface getOutgoingInterface(IpAddress dstIpAddress);
62
63}