本文整理汇总了Java中net.floodlightcontroller.devicemanager.IDevice.getIPv4Addresses方法的典型用法代码示例。如果您正苦于以下问题:Java IDevice.getIPv4Addresses方法的具体用法?Java IDevice.getIPv4Addresses怎么用?Java IDevice.getIPv4Addresses使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.floodlightcontroller.devicemanager.IDevice
的用法示例。
在下文中一共展示了IDevice.getIPv4Addresses方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: deviceAdded
import net.floodlightcontroller.devicemanager.IDevice; //导入方法依赖的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.devicemanager.IDevice; //导入方法依赖的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.devicemanager.IDevice; //导入方法依赖的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.devicemanager.IDevice; //导入方法依赖的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: getDeviceFromIP
import net.floodlightcontroller.devicemanager.IDevice; //导入方法依赖的package包/类
private IDevice getDeviceFromIP(int ip){
IDevice device = null;
for (IDevice d : deviceService.getAllDevices()) {
for (int j = 0; j < d.getIPv4Addresses().length; j++) {
if (device == null &&
(ip == d.getIPv4Addresses()[j].getInt())){
device = d;
}
}
}
return device;
}
示例6: deviceAdded
import net.floodlightcontroller.devicemanager.IDevice; //导入方法依赖的package包/类
@Override
public void deviceAdded(IDevice device) {
if (device.getIPv4Addresses() == null) return;
for (IPv4Address i : device.getIPv4Addresses()) {
if (gatewayToGuid.containsKey(i)) {
MacAddress mac = device.getMACAddress();
if (log.isDebugEnabled())
log.debug("Adding MAC {} with IP {} a a gateway",
mac.toString(),
i.toString());
macToGateway.put(mac, i);
}
}
}