JPCAP: Network Device Information Display

hi i am using JPCAP to display network device information.. but, problem i am getting with following code is that it works only on first JComboBox value change and then, Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException occurs..
import java.awt.*;
import java.awt.TrayIcon.MessageType;
import java.awt.event.*;
import javax.swing.*;
import jpcap.*;
public class jpcap_example {
      * @param args
     public static void main(String[] args) {
          // TODO Auto-generated method stub
          JFrame frame1 = new JFrame("Network Device(s) Information");
          String device_names[];
          JComboBox device_select;
          JPanel panel1 = new JPanel(new BorderLayout());
          JPanel panel2 = new JPanel(new GridLayout(5, 1));
          final JLabel IPAddress = new JLabel("IP Address", JLabel.LEFT);
          final JLabel SubnetMask = new JLabel("Subnet Mask", JLabel.LEFT);
          final JLabel Broadcast = new JLabel("Broadcast Address", JLabel.LEFT);
          final JLabel MACAddress = new JLabel("MAC Address", JLabel.LEFT);
          final JLabel Localloop = new JLabel("IsLocal", JLabel.LEFT);
          final NetworkInterface devices[] = JpcapCaptor.getDeviceList();
          device_names = new String[devices.length];
          for (int i = 0; i < devices.length; i++)
               device_names[i] = devices.name;
          if (devices.length == 0)
               JOptionPane.showMessageDialog(frame1, "Should run this app as root to see all hidden devices..", "Fatal Error", JOptionPane.ERROR_MESSAGE);
          device_select = new JComboBox(device_names);
          device_select.setForeground(Color.BLUE);
          device_select.setMaximumRowCount(3);
          panel1.add(device_select, BorderLayout.NORTH);
          panel2.add(IPAddress);
          panel2.add(SubnetMask);
          panel2.add(Broadcast);
          panel2.add(MACAddress);
          panel2.add(Localloop);
          panel1.add(panel2, BorderLayout.WEST);
          frame1.add(panel1);
          frame1.setSize(new Dimension(640, 480));
          frame1.setVisible(true);
          frame1.addWindowListener(new WindowAdapter()
               @Override
               public void windowClosing(WindowEvent e) {
                    // TODO Auto-generated method stub
                    super.windowClosing(e);
                    System.exit(0);
          device_select.addActionListener(new ActionListener(){
               @Override
               public void actionPerformed(ActionEvent e) {
                    // TODO Auto-generated method stub
                    JComboBox temp = (JComboBox)e.getSource();
                    IPAddress.setText("IPAddress");
                    SubnetMask.setText("SubnetMask");
                    Broadcast.setText("BroadcastAddress");
                    MACAddress.setText("MAC Address");
                    Localloop.setText("IsLocal?");
                    for (int i = 0; i < devices[temp.getSelectedIndex()].addresses.length; i++)
                         IPAddress.setText(IPAddress.getText() + devices[temp.getSelectedIndex()].addresses[i].address.toString());
                         SubnetMask.setText(SubnetMask.getText() + devices[temp.getSelectedIndex()].addresses[i].subnet.toString());
                         Broadcast.setText(Broadcast.getText() + devices[temp.getSelectedIndex()].addresses[i].broadcast.toString());
                    MACAddress.setText(MACAddress.getText() + devices[temp.getSelectedIndex()].mac_address.toString());
                    Localloop.setText(Localloop.getText() + devices[temp.getSelectedIndex()].loopback);
can somebody please tell me where i am making mistake??                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

sorry, for late reply..
i changed code for displaying mac address correctly (thought it should correct the problem but, still same error).. here's the change..
for (int i = 0; i < devices[temp.getSelectedIndex()].mac_address.length; i++)
     int j = (int)devices[temp.getSelectedIndex()].mac_address;
     j &= 0xff;
     MACAddress.setText(MACAddress.getText() + " : "+ Integer.toHexString(j));
Localloop.setText(Localloop.getText() + devices[temp.getSelectedIndex()].loopback);
anyhow, it is showing exception in this line..Broadcast.setText(Broadcast.getText() + devices[temp.getSelectedIndex()].addresses[i].broadcast.toString());
i wonder what could be problem in that line .. ??
{for last value of i, it showed like fe80:0:0:.... in IP Address field; and ffff:ffff:ffff:ffff:0:0:0:0 in subnet mask .. before exception occured..
i suppose i know what it is but, still not sure.. what is it??}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Range expander not displayed in network device list from Router

    My range expander seems to be working properly, blue lights, and improved signal in dead zone.  However, I noticed when viewing my network devices from the router settings it did not list anything located at 192.168.1.240.  I was wondering why that would be when the expander is working properly?  Shouldn't the router show it as a connected device?
    Thanks.
    Solved!
    Go to Solution.

    I wouldn't worry about it. Mine doesn't either. I assume because it is set up like the router as a repeater that it is kinda like a "ghost". I know it is there because I can ping it and access it at 192.168.1.240 in the browser. If you want, you can download the LELA network management software. That will pick it up.
    Message Edited by Luckydog on 01-30-2009 05:53 AM

  • How to import network devices on ISE 1.2

    Hi, experts,
    I'm trying to import network devices on ISE 1.2.0.899
    so I downloaded the template and opened with notepad and wrote all the nessesarry information.
    and I tried to upload to ISE, and it just said import failed. no reason..
    does anyone know how to do it ?

    Hi jiyoung
    This import failed error might occur due to following reasons so please make sure that :
    You are not running two import jobs of the same resource type at the same time. For example, you cannot concurrently run two import jobs to import network devices from two different import files.
    More over please make sure that while configuring the network devices you are performing job from a super admin or network device admin group.
    Best Regards:
    Muhammad Munir
    Hi, experts,
    I'm trying to import network devices on ISE 1.2.0.899
    so I downloaded the template and opened with notepad and wrote all the nessesarry information.
    and I tried to upload to ISE, and it just said import failed. no reason..
    does anyone know how to do it ?

  • Discovering Network Devices with SNMP not working

    I have implemented SCOM 2012 SP1 CU5 on Server 2008 R2 with SQL 2008 R2 all installed on the same VM running side by side with SCOM 2007 R2 v 6.1.7221.0. I have almost fully decommissioned SCOM 2007 and all that remains on it is 2 network devices that
    I cannot discover with SCOM 2012 using SNMP, no matter what I try. If I just use ICMP the discovery works. I have checked both the devices and SNMP is enabled and if I run this snmpwalk command on both devices I get a response;
    c:\Support\SNMP Walk>SnmpWalk.exe -r:10.X.X.XX -v:1 -c:"public" -os:.1.3.6.1.
    2.1.1 -op:.1.3.6.1.2.1.2
    SnmpWalk v1.01 - Copyright (C) 2009 SnmpSoft Company
    [ More useful network tools on http://www.snmpsoft.com ]
    OID=.1.3.6.1.2.1.1.1.0, Type=OctetString, Value=NetMan 100 plus
    OID=.1.3.6.1.2.1.1.2.0, Type=OID, Value=1.3.6.1.4.1.5491.6
    OID=.1.3.6.1.2.1.1.3.0, Type=TimeTicks, Value=5 days, 1:58:58.04
    OID=.1.3.6.1.2.1.1.4.0, Type=OctetString, Value=SystemsEngineer
    OID=.1.3.6.1.2.1.1.5.0, Type=OctetString, Value=MARMUPS
    OID=.1.3.6.1.2.1.1.6.0, Type=OctetString, Value=FXXXXX
    OID=.1.3.6.1.2.1.1.7.0, Type=Integer, Value=0
    Total: 7
    c:\Support\SNMP Walk>SnmpWalk.exe -r:10.X.X.1 -v:1 -c:"scom05" -os:.1.3.6.1.2.1
    .1 -op:.1.3.6.1.2.1.2
    SnmpWalk v1.01 - Copyright (C) 2009 SnmpSoft Company
    [ More useful network tools on http://www.snmpsoft.com ]
    OID=.1.3.6.1.2.1.1.1.0, Type=OctetString, Value=SSG-140 version 6.3.0r2.0 (SN: 0
    185112006000325, Firewall+VPN)
    OID=.1.3.6.1.2.1.1.2.0, Type=OID, Value=1.3.6.1.4.1.3224.1.52
    OID=.1.3.6.1.2.1.1.3.0, Type=TimeTicks, Value=359 days, 2:20:16.00
    OID=.1.3.6.1.2.1.1.4.0, Type=OctetString, Value=Network
    OID=.1.3.6.1.2.1.1.5.0, Type=OctetString, Value=XXXXXX
    OID=.1.3.6.1.2.1.1.6.0, Type=OctetString, Value=FXXXXX
    OID=.1.3.6.1.2.1.1.7.0, Type=Integer, Value=72
    Total: 7
    The first device is a Marms UPS which has had its firmware upgraded, which was discovered using SNMP in SCOM 2007 and the second device is a Juniper SSG-140 Firewall, again this is discovered using SNMP in SCOM 2007.
    I believe that I have setup SNMP correctly on SCOM 2012 because I have 28 other networks devices discovered using SNMP using an explicit discovery, some of these being newer Marms UPS's, emerson air conditioners, netapp SAN etc.
    I have added any and all accepted community names in the SNMP service properties on SCOM 2012 and enabled accept SNMP packets from any host.
    Does anyone have any information that they could forward to me or point in the right direction to troubleshoot this issue for eg run some snmp get commands and capture / filter traffic with wireshark, what do I look for? Any other logs to check besides the
    obvious ones? Any known issues with SCOM 2012 SP1 and SNMP, should I upgrade to R2? It just seems that some network devices get discovered with ease and others do not and I am running out of ideas. Thank you all in advance.

    Patrick, thank you for your reply.
    Yes the snmpwalk command is run from the new SCOM 2012 server which has the discovery rule on it.
    I don't have any pending network devices, its blank.
    Could there be an issue with my discovery rule? I have noticed that each time I make a change to, for eg, the access mode and change this from ICMP to ICMP/SNMP, save it, run it, it doesn't seem to update the said network devices access mode's in network
    devices, it just stays on ICMP. Do I have to manually remove the network devices which have been discovered before making any changes to the discovery rule and running it which I have done? They don't seem to appear in network devices pending management either?

  • Network Device Usermode I/O Protocol and ConfigFree error

    I have a Toshiba laptop and recently it has not started properly, displaying the following message: "Not found TOSHIBA Network Device Usermode I/O Protocol. Please reinstall ConfigFree. OK".
    I am unable to use the laptop and it will not shut down without being forced (though once it did shut down and restarted OK, and then worked fine for three days We left it over Xmas and now it is doing it again). Can anyone let me know what this error message means and how I can deal with it (I know little about the workings of my laptop!).
    We have Windows XP and are set up to a wireless broadband connection. I would be wonderfully happy if I could sort this as I have been forced to travel to work rather than work from home today because of it!!!!
    Thank you in advance!

    Hi
    The message is clear.
    > Please reinstall ConfigFree.
    So why didnt you reinstall this utility???
    If you didnt create the Tools & Utility CD you can download this utility from the Toshiba driver page.
    Then remove the ConfigFree from the Add & remove programs, reboot the unit and install the ConfigFree again.

  • NAS dissapeared from Network Devices

    Hi everyone
    I have a Mac Retina Pro running OS X 10.9.4 (13E28). I recently bought a Synology NAS (DS214). I enabled the Mac file sharing Service on it and it worked fine for the first couple of weeks. But suddenly a couple of days ago it is no longer available in the network devices... There is no firewall enabled and it's on the same domestic LAN. And I can actually reach the NAS using the GUI on the browser. Everything is up, it is just not available anymore on my MAC. And just on this Mac.
    Not sure if related at all, but this is consistent with a very annoying behaviour of the MAC against external drives in general... I already have 2 external disk (one WD and the other Seagate) drives that just stopped working on it. Nothing happens, and they are never displayed when the USB is connected after using them succesfully for a while. Though if I connect the same external drives in other personal computers (including similar Macs they come up just fine). This is something else I need to fix as well, but probably in a separate thread..
    Still wondering if some kind of device info is screwed up and how can it be reset if appropriate.
    Thanks
    Joao

    Cisco works , HPOV is the best in heard

  • Solaris 10 - Installation - Networked Option not display- RTL 8139 NIC Card

    Hi,
    when i installing Solaris, the Networkd (Yes/No) option not display. In my PC (x86) RTL 8139 Networkd Card is installed. Please advice, how can i enable Networked option and docs says that Solaris-10 Supports RTL 8139 Network card. (Ref: http://www.sun.com/software/solaris/self_help.jsp#installing )
    Here pls refer "Network Devices (x86)" Section ).
    Thanks

    I'm not quite sureee, but you might want to run the SDDT test scripts...
    http://www.sun.com/bigadmin/hcl/hcts/device_detect.jsp
    This you can run from Windows, Linux on the same box, and it will list all the drivers for the hardware that solaris knows about. Inside the tool you can select, whether you want that list for Solaris 10 or SXDE...
    Matthias
    P.S.: I assume, the driver should be e1000g, but am not quite sure...

  • Can't get device information: Operation already in progress

    Hello,
    I am trying to connect my Microsoft Notebook Mouse 5000 and having a bit of trouble.  I am following the instructions I found here: https://wiki.archlinux.org/index.php/Bluetooth_Mouse
    I have all the packages installed and am able to search for and find my mouse.  The problem is when I try to connect to it.  I have tried using both these commands
    hidd --connect <bdaddr>
    hidd --show
    Both of them give me the same error message.  "Can't get device information: Operation already in progress"
    All the information I have found on this error just says to use the first command, which did not work.
    Any ideas on where to go from here?
    Thanks in advance.

    Hi,
    If you have the shadow directory function running (http:///help/lms_admin/index.html?config_EnblDsblShadowDir.html) then you will have a group of flat config files that are not linked with LMS in any other way.  That is to say that the files generated are simply text files residing within the shadow directory that should mirror what you have in the database.
    This function is one way.  LMS generates the file upon config change to 'shadow' what is in it's database.
    In regards to the C2960 24TC-L,  you need to obtain the sysObjectID for the device.  For example: 
    WS-C2970G-24TS has a sysObject ID of 1.3.6.1.4.1.9.1.527.
    If you navigate to the Device Status Page: http://:1741/cwportal/group/lms/lms-deviceadmin
    There you will find 'Supported Device Finder' where you can enter the device [IP,Display Name, etc].
    You can also navigate to Device Center, look for the star icon on the same line as 'Device Status' and click on it. Then choose 'SNMP Walk'.  This will return the OID in numerical format.
    Thanks

  • Network devices discovered but not managed

    SCOM 2012 R2 management group. A dedicated network monitoring resource pool consists of two MSs. These two MSs have been removed from AMSRP and other two default resource pools (AD.., Notification...) - is this correct?
    Two discovery roles:
    role1 runs on GWS1 discovered (explicitly) 5 devices and shown all "healthy". This rule was using AMSRP to monitor, but changed to the dedicated pool after it was created.
    role2 (added after the dedicated resource pool was created) runs on GWS2 discovered (explicitly) 2 devices but shown as "not monitored"
    How to find out what's wrong? (log files etc?)
    Anything need to check with the resource pool settings?
    Thanks.

    Hi,
    Do you mean that you have discovered the two network devices on your Management server, but it is not monitored.
    This issue maybe caused by the proper management pack was imported, please go through the below article to get more information about how to monitor network device by using SCOM:
    http://technet.microsoft.com/en-us/library/hh212935.aspx
    Network Monitoring using System Center Operations Manager 2012
    http://blogs.technet.com/b/rohitkochher/archive/2011/11/26/network-monitoring-using-system-center-operations-manager-2012.aspx
    Regards,
    Yan Li
    Regards, Yan Li

  • Loose wifi when adding a networking device to my Fios Actiontec router

    Ok so here's the story:
    I switched to FIOS from another company recently. So far so good. I have a main hard wired desktop and 2 laptops w/wifi. All runon Window Vista
    Starting about 2 weeks, ago, I coudn't connect wiressly anymore. I tried everything (re-booting, re-installing, etc etc, you name it). All I would get was "Local Access Only" (on all 3 computers) when trying to go wireless.
    I spent a good while with a VZ tech on chat and in the end, he decided it was best to send me a new router.
    The new router arrived today. And go figure, that was not the issue. I connect everything as instructed and still would have no wi-fi.
    So..after much thought, I decided to unplug my Aruba Networks device from the router. It's one of those devices used to download data from a hand held computer like the one's UPS drivers use: http://www.arubanetworks.com/
    AND! now it works like a char, wi-fi back on, on all 3 computers, fast, no problem.
    I a assuming that there's some sort of networking/IP/whatever conflict between the Aruba controller and the router. Problem is, my boyfriend really needs it connected and I really need my wi-fi. So...any idea how I would go about adding this device to the router without causing any conflicts to my network?
    THANKS!
    Alex
    Solved!
    Go to Solution.

    Has your boyfriend rerun the provisioning process since you switched to FIOS?
    There is a quickstart guide here:
    http://community.arubanetworks.com/aruba/attachments/aruba/unified-wired-wireless-access/23814/1/RAP...
    That quickstart doesn't give any information on how the RAP-2WG interfaces with a local LAN.
    You're probably going to have to get you boyfriend's IT department involved.
    My guess is that the Aruba device is trying to "own" the 192.168.1.x subnet, which is what the FIOS router uses.

  • Network Device Repository/Database to keep Inventory & other info

    I need your help to find a solution/tool which can serve as network repository for our organization.  This tool can be database of all network device including servers to keep Visio diagrams, change logs, specify location, escalations, primary and secondary contacts etc. 
    I have heard of Orion but I think it can’t hold Visio diagrams with devices.  If you know any other tools that can do all that for me, it will be appreciated.

    I've always used sharepoint for managing diagrams as it has built in version control. It handles document management very well.
    If you were so inclined you could build your own database for device information in sharepoint also and link the devices to diagrams
    Of course there is no one tool to manage all of your requirements. That's why I'll plug my own tool for configuration backups of your network devices.
    See below or Cisco cafe forum on this site for more info.
    www.rconfig.com
    Sent from Cisco Technical Support iPhone App

  • 13017 Received TACACS+ packet from unknown Network Device or AAA Client

    I am adding new routers to our Corporate network for a new MPLS network.  I am getting 13017 Received TACACS+ packet from unknown Network Device or AAA Client  errors for these new routers.  They are added to ACS 5.4.0.30 correctly just like all of our other devices.  We have never had real routers on the network before, just switches and access points.  Is there something special I need to set in ACS for these to work and authenticate correctly?  I can only access the currently with built in login locally.
    One of the new router configs
    Current configuration : 2370 bytes
    version 12.4
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname T666
    boot-start-marker
    boot-end-marker
    enable secret 5 $1$h7b3$.T2idTKb9H98BQ8Op0MAC/
    aaa new-model
    aaa authentication login default group tacacs+ local
    aaa authentication enable default group tacacs+ enable
    aaa authorization exec default group tacacs+ local if-authenticated
    aaa accounting exec default start-stop group tacacs+
    aaa session-id common
    clock timezone CST -6
    clock summer-time CDT recurring
    ip cef
    ip auth-proxy max-nodata-conns 3
    ip admission max-nodata-conns 3
    voice-card 0
    crypto pki trustpoint TP-self-signed-2699490457
     enrollment selfsigned
     subject-name cn=IOS-Self-Signed-Certificate-2699490457
     revocation-check none
     rsakeypair TP-self-signed-2699490457
    username netadmin privilege 15 secret 5 $1$SIR2$A3MpShVNeAOlTPyLZESr..
    interface FastEthernet0/0
     ip address 10.114.2.1 255.255.255.0
     ip helper-address 10.30.101.4
     duplex auto
     speed auto
    interface FastEthernet0/1
     no ip address
     shutdown
     duplex auto
     speed auto
    interface Serial0/1/0
     ip address X.X.X.X 255.255.255.252
     no fair-queue
     service-module t1 timeslots 1-24
     service-module t1 remote-alarm-enable
     service-module t1 fdl ansi
     no cdp enable
    router bgp 65065
     no synchronization
     bgp log-neighbor-changes
     network 10.114.2.0 mask 255.255.255.0
     neighbor X.X.X.X remote-as 209
     neighbor X.X.X.X default-originate
     default-information originate
     no auto-summary
    ip forward-protocol nd
    ip bgp-community new-format
    ip http server
    ip http authentication aaa
    ip http secure-server
    ip tacacs source-interface FastEthernet0/0
    no logging trap
    tacacs-server host 10.30.101.221 key 7 1429005B5C502225
    tacacs-server host 10.30.101.222 key 7 1429005B5C502225
    tacacs-server directed-request
    control-plane
    banner exec ^CC
    C
    Login OK
    ^C
    banner motd ^CC
    C
    **  UNAUTHORIZED ACCESS TO THIS SYSTEM IS PROHIBITED.  USE OF
    **  THIS SYSTEM CONSTITUES CONSENT TO MONITORING AT ALL TIMES.
    **  RUAN Transport Corporation
    **  Network Services
    **  [email protected]
    **  515.245.2512
    ^C
    line con 0
    line aux 0
    line vty 0 4
     exec-timeout 30 0
     transport input all
    line vty 5 15
     exec-timeout 30 0
    scheduler allocate 20000 1000
    end
    T666#

    AAA Protocol > TACACS+ Authentication Details
    Date :
    September 19, 2014
    Generated on September 19, 2014 10:21:27 AM CDT
    Authentication Details
    Status:
    Failed
    Failure Reason:
    13017 Received TACACS+ packet from unknown Network Device or AAA Client
    Logged At:
    Sep 19, 2014 10:21 AM
    ACS Time:
    Sep 19, 2014 10:21 AM
    ACS Instance:
    acs01
    Authentication Method:
    Authentication Type:
    Privilege Level:
    User
    Username:
    Remote Address:
    Network Device
    Network Device:
    Network Device IP Address:
    10.114.2.1
    Network Device Groups:
    Access Policy
    Access Service:
    Identity Store:
    Selected Shell Profile:
    Active Directory Domain:
    Identity Group:
    Access Service Selection Matched Rule :
    Identity Policy Matched Rule:
    Selected Identity Stores:
    Query Identity Stores:
    Selected Query Identity Stores:
    Group Mapping Policy Matched Rule:
    Authorization Policy Matched Rule:
    Authorization Exception Policy Matched Rule:
    Other
    ACS Session ID:
    Service:
    AV Pairs:
    Response Time:
    Other Attributes:
    ACSVersion=acs-5.3.0.40-B.839 
    ConfigVersionId=359 
    Device Port=59840 
    Protocol=Tacacs
    Authentication Result
    Steps
    Received TACACS+ packet from unknown Network Device or AAA Client
    Additional Details
    DiagnosticsACS Configuration Changes

  • SCOM Monitoring Multiple interface of a same network device

    hi
    I have deployed SCOM 2012 R2. I have discovered around 200 network device by using device's loopback IP adress with SNMP v3.
    100 dvices are in the branch offices those are connected with 3 links in three interfaces respectively. Even if two link is down, i can see that my network device is healthy since network device is discovered with the loopback address. How can i configure
    my network monitoring so that even if one link goes down i can see some kind of warning or error in the particular network device in my monitoring pane. Please say if my infrastructure is unclear.

    Hi,
    You can create built-in network ICMP only network monitoring for the three interfaces respectively.
    Using the built-in network monitoring within Operations Manager 2012 to monitor network devices using ICMP only mode
    http://blogs.catapultsystems.com/cfuller/archive/2013/07/03/using-the-built-in-network-monitoring-within-operations-manager-2012-to-monitor-network-devices-using-icmp-only-mode-scom-sysctr.aspx
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Network Adapter information

    Hi Moderator,
    Please help us to know how to get the informations about the activity of connection on Network Adapter. In fact, on panel control, after on connection,  after on Status Network Adapter (Device), here we have the time connection on the network for
    the device : i would like to get it with command Powershell (like the status Link up of the Network Device).
    The command GMWI Win32 NetworkAdapter do not list this information yet.
    More simply, I would like to get the date of connection on network for a computer (the started time connection for a network device) as possible with powershell (or else command as far as needed).
    Thansk in advance for your technical assistance asap.
    Best regards 
    L.G

    Hi there and thanks for posting!
    Try this :
    Get-WmiObject Win32_NetworkAdapter |
    Where { $_.NetEnabled -eq $true } |
    Select Name, Index, @{N="TimeOfLastReset";E={[System.Management.ManagementDateTimeConverter]::ToDateTime($_.TimeOfLastReset)}}
    Have fun Scripting

  • Z61m internal network device

    Hi again,
    I have an additional big issue:
    If I set the internal network device to enable in BIOS windows XP won't boot.
    I can only enable the internal wireless devices in BIOS and you the wlan to connect to internet.
    Can anyone help me to use the ethernet connection?
    what can I do to enable the internal network devices?
    Thanks

    Salutations, Luke.
    That setup will be fine.  Just make sure that you are not assigning any devices IPs in the 192.168.1.100-150 range as that is designated for the STBs in your home.  That would result in conflicting IPs, thus no IP-centric services (i.e. guide and VOD) would work.
    Alternatively, you can have the existing router piggyback off of the Actiontec router.  You can keep the Actiontec at default and set the existing router to a different IP range (perhaps 192.168.0.XXX or 192.168.2.xxx).  This way you can totally seperate the two networks- Actiontec for FiOS services, existing router for home data network.
    Let me know if you run into any problems with the specific setup.
    Regards,
    Chris
    Christian
    Verizon Telecom
    Fiber Solution Center
    Notice: Content posted by Verizon employees is meant to be informational and does not supercede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.

Maybe you are looking for

  • BW Statstics reports

    Hi, Can anybody name the generally used BW Statstics reports? Baazi.

  • Syncing new phone problem

    Hi there Brought home my new Iphone today and synced it with Itunes as one muxt do . However I inadvertently synced it as my sons phone rather than a new iphone. I therefor have all his contacts music etc. How do i resync my phone as a new phone and

  • IBook R.I.P.

    Well, it's done. The MacBook is here. Makes me feel good to know that I own the last in the line of that great classic - the 'iBook'. Phil

  • UCCX Historical Report Error

    Hi, I installed the program Cisco Historical Reports on a user's machine. When I try to launch it, I get "unexpected error, quiting" When I try to uninstall it, I get "Error opening installation log file, Verify that the specficied log file location

  • Adobe Reader Customization uninstall previous versions

    Hello, I deployed Adobe Reader XI through Group Policy, Windows Server 2003. I used the Adobe Reader XI Customization Tool, and created a transform. I left the option checked to uninstall previous versions of Reader. Adobe Reader XI installed with al