blob: b98ea98f419f709a04693f35f25ee5942c18ed94 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*******************************************************************************/
package org.eclipse.om2m.sdt.home.lifx;
import java.net.InterfaceAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.Enumeration;
import junit.framework.TestCase;
public class IPTest extends TestCase {
public void test() throws SocketException {
for(Enumeration<NetworkInterface> e = NetworkInterface.getNetworkInterfaces(); e.hasMoreElements();) {
NetworkInterface ni = e.nextElement();
System.out.println("ni.name=" + ni.getName());
for(InterfaceAddress ia :ni.getInterfaceAddresses()) {
System.out.println("\t" + ia.getAddress());
}
}
}
}