Wired Intelligent Edge

 View Only
last person joined: yesterday 

Bring performance and reliability to your network with the HPE Aruba Networking Core, Aggregation, and Access layer switches. Discuss the latest features and functionality of your switching devices, and find ways to improve security across your network to bring together a mobile-first solution
Expand all | Collapse all

HP USB console port driver for OSX?

This thread has been viewed 0 times
  • 1.  HP USB console port driver for OSX?

    Posted Jun 28, 2013 06:58 AM

    Hi,

     

    I want to connect to the USB console of a 2530-48G from my Macbook Pro (Mountain Lion).

     

    The port is recognised when I connect it:

     

    Product ID:0x013f

      Vendor ID:0x03f0  (Hewlett Packard)

      Version: 0.01

      Serial Number:Cxxxxxxxxxx

      Speed:Up to 12 Mb/sec

      Manufacturer:HP

      Location ID:0x14200000 / 1

      Current Available (mA):500

      Current Required (mA):100

     

    Can anyone tell me if there are any USB console port drivers available for OSX?

     

    Thanks,

     

    R.


    #usb


  • 2.  RE: HP USB console port driver for OSX?

    Posted Dec 19, 2014 07:54 PM

    Here's what works for me:

     

    Take a look at your /dev/tty* after connecting the USB cable to you HP switch's microUSB port.

     

    # ls -la /dev/tty* -crt

     

    -crt wil sort chronologically.  Note the last few entries that should align with when you connected the cable to your switch.

     

    In my case, I saw "/dev/tty.usbmodem1411"

     

    Using Putty or a terminal emulator on my Mac, I connected to the serial port /dev/tty.usbmodem1411.

     

    WORKING!!



  • 3.  RE: HP USB console port driver for OSX?

    Posted Jun 04, 2015 12:40 PM

    Like ManhattanColleg said, one should get a new entry in /dev that should be named tty.usbmodem* once the USB cable is connected.

    One should also be able to find the device with:

    ls /dev/tty.usbmodem*

    One can then use the native Unix screen command to connect:

    screen /dev/tty.usbmodem* 9600

    The * will be the shell-expand to the appropriate value assuming you have exactly one usbmodem attached to the computer; use the actual device name if needed. 9600 is the baud rate screen will use for the session. Vivek Gite has a nice article on Screen for Terminal Communication that outlines additional parameters.



  • 4.  RE: HP USB console port driver for OSX?

    Posted Feb 12, 2016 12:29 AM

    is this also possible with rj45 console instead of usb?



  • 5.  RE: HP USB console port driver for OSX?

    Posted Feb 16, 2016 01:44 PM

    Yes, it is also possible to use screen to access the RJ-45 console port, but it does require a USB to Serial adapter with appropriate drivers installed. You will also have to determine the /dev name as described by ManhattanColleg; it will most likely not be tty.usbmodem*.

    Most of the USB to Serial adapters out there seem to be based on the Prolific PL2303 chipset, and the drivers from Prolific only support their USB VID and PID. The USB to Serial adapter from plugable.com maintains the Prolific VID/PID and can be used with the "official" drivers and uses /dev name tty.usbserial*.
    Other USB to Serial adapters can be used via open-source drivers, though with the added complexity that entails.