本文整理汇总了Java中net.floodlightcontroller.accesscontrollist.ap.AP类的典型用法代码示例。如果您正苦于以下问题:Java AP类的具体用法?Java AP怎么用?Java AP使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AP类属于net.floodlightcontroller.accesscontrollist.ap包,在下文中一共展示了AP类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: deviceAdded
import net.floodlightcontroller.accesscontrollist.ap.AP; //导入依赖的package包/类
@Override
public void deviceAdded(IDevice device) {
SwitchPort[] switchPort = device.getAttachmentPoints();
if (switchPort.length == 0) {
//Device manager does not yet know an attachment point for a device (Bug Fix)
return;
}
IPv4Address[] ips = device.getIPv4Addresses();
if (ips.length == 0) {
// A new no-ip device added
return;
}
String dpid = HexString.toHexString(switchPort[0].getSwitchDPID()
.getLong());
String ip = IPv4.fromIPv4Address(ips[0].getInt());
logger.debug("AP(dpid:{},ip:{}) is added", dpid, ip);
AP ap = new AP(ip, dpid);
apManager.addAP(ap);
processAPAdded(ap);
}
示例2: deviceIPV4AddrChanged
import net.floodlightcontroller.accesscontrollist.ap.AP; //导入依赖的package包/类
@Override
public void deviceIPV4AddrChanged(IDevice device) {
SwitchPort[] switchPort = device.getAttachmentPoints();
IPv4Address[] ips = device.getIPv4Addresses();
String dpid = HexString.toHexString(switchPort[0].getSwitchDPID()
.getLong());
String ip = null;
// some device may first appear with no IP address(default set to
// 0.0.0.0), ignore it
for (IPv4Address i : ips) {
if (i.getInt() != 0) {
ip = IPv4.fromIPv4Address(i.getInt());
break;
}
}
logger.debug("AP(dpid:{},ip:{}) is added", dpid, ip);
AP ap = new AP(ip, dpid);
apManager.addAP(ap);
processAPAdded(ap);
}
示例3: deviceAdded
import net.floodlightcontroller.accesscontrollist.ap.AP; //导入依赖的package包/类
/**
* listen for new device
*/
@Override
public void deviceAdded(IDevice device) {
SwitchPort[] switchPort = device.getAttachmentPoints();
IPv4Address[] ips = device.getIPv4Addresses();
if(ips.length == 0){
// A new no-ip device added
return;
}
String dpid = HexString.toHexString(switchPort[0].getSwitchDPID().getLong());
String ip = IPv4.fromIPv4Address(ips[0].getInt());
logger.info("New AP added. [dpid:" + dpid + " ip:" + ip + "]");
AP ap = new AP(ip,dpid);
apManager.addAP(ap);
processAPAdded(ap);
}
示例4: deviceIPV4AddrChanged
import net.floodlightcontroller.accesscontrollist.ap.AP; //导入依赖的package包/类
@Override
public void deviceIPV4AddrChanged(IDevice device) {
SwitchPort[] switchPort = device.getAttachmentPoints();
IPv4Address[] ips = device.getIPv4Addresses();
String dpid = HexString.toHexString(switchPort[0].getSwitchDPID().getLong());
String ip = null;
// some device may first appear with no IP address(default set to 0.0.0.0), ignore it
for(IPv4Address i : ips){
if(i.getInt() != 0){
ip = IPv4.fromIPv4Address(i.getInt());
break;
}
}
logger.info("New AP added. [dpid:" + dpid + " ip:" + ip + "]");
AP ap = new AP(ip, dpid);
apManager.addAP(ap);
processAPAdded(ap);
}
示例5: deviceAdded
import net.floodlightcontroller.accesscontrollist.ap.AP; //导入依赖的package包/类
@Override
public void deviceAdded(IDevice device) {
SwitchPort[] switchPort = device.getAttachmentPoints();
if (switchPort.length == 0) {
//Device manager does not yet know an attachment point for a device (Bug Fix)
return;
}
IPv4Address[] ips = device.getIPv4Addresses();
if (ips.length == 0) {
// A new no-ip device added
return;
}
String dpid = HexString.toHexString(switchPort[0].getSwitchDPID()
.getLong());
String ip = IPv4.fromIPv4Address(ips[0].getInt());
logger.debug("AP(dpid:{},ip:{}) is added", dpid, ip);
AP ap = new AP(ip, dpid);
apManager.addAP(ap);
processAPAdded(ap);
}
示例6: deviceAdded
import net.floodlightcontroller.accesscontrollist.ap.AP; //导入依赖的package包/类
/**
* listen for new device
*/
@Override
public void deviceAdded(IDevice device) {
SwitchPort[] switchPort = device.getAttachmentPoints();
IPv4Address[] ips = device.getIPv4Addresses();
if(ips.length == 0){
// A new no-ip device added
return;
}
String dpid = HexString.toHexString(switchPort[0].getSwitchDPID().getLong());
String ip = IPv4.fromIPv4Address(ips[0].getInt());
logger.debug("New AP added. [dpid:" + dpid + " ip:" + ip + "]");
AP ap = new AP(ip,dpid);
apManager.addAP(ap);
processAPAdded(ap);
}
示例7: deviceAdded
import net.floodlightcontroller.accesscontrollist.ap.AP; //导入依赖的package包/类
@Override
public void deviceAdded(IDevice device) {
SwitchPort[] switchPort = device.getAttachmentPoints();
IPv4Address[] ips = device.getIPv4Addresses();
if (ips.length == 0) {
// A new no-ip device added
return;
}
String dpid = HexString.toHexString(switchPort[0].getSwitchDPID()
.getLong());
String ip = IPv4.fromIPv4Address(ips[0].getInt());
logger.debug("AP(dpid:{},ip:{}) is added", dpid, ip);
AP ap = new AP(ip, dpid);
apManager.addAP(ap);
processAPAdded(ap);
}
示例8: testGetDpidSet
import net.floodlightcontroller.accesscontrollist.ap.AP; //导入依赖的package包/类
@Test
public void testGetDpidSet(){
AP ap1 = new AP("10.0.0.1","00:00:00:00:00:00:00:01");
AP ap2 = new AP("10.0.0.2","00:00:00:00:00:00:00:02");
AP ap3 = new AP("10.0.0.3","00:00:00:00:00:00:00:03");
APManager apManager = new APManager();
apManager.addAP(ap1);
apManager.addAP(ap2);
apManager.addAP(ap3);
int cidr[];
// test CIDR IP with suffix that equals "/32"
cidr = IPAddressUtil.parseCIDR("10.0.0.1/32");
Set<String> resultSet = apManager.getDpidSet(cidr[0],cidr[1]);
Set<String> expectedSet = new HashSet<String>();
expectedSet.add("00:00:00:00:00:00:00:01");
assertEquals(resultSet, expectedSet);
// test CIDR IP with suffix that does not equal "/32"
cidr = IPAddressUtil.parseCIDR("10.0.0.1/30");
resultSet = apManager.getDpidSet(cidr[0],cidr[1]);
expectedSet = new HashSet<String>();
expectedSet.add("00:00:00:00:00:00:00:01");
expectedSet.add("00:00:00:00:00:00:00:02");
expectedSet.add("00:00:00:00:00:00:00:03");
assertEquals(resultSet, expectedSet);
// test CIDR IP does not exist in the network
cidr = IPAddressUtil.parseCIDR("10.0.0.4/32");
resultSet = apManager.getDpidSet(cidr[0],cidr[1]);
expectedSet = new HashSet<String>();
assertEquals(resultSet, expectedSet);
}