Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. gjandrews35

    VBA Function Decimal back to IP

    PHV has a great function to convert an IP to its decimal equivalent. Public Function ip2num(ip) Dim i, a, n a = Split(ip, ".") n = CDbl(0) For i = 0 To UBound(a) n = n * 256 + a(i) Next i ip2num = n End Function Works like a charm, now I am looking for a similar function to convert a decimal...
  2. gjandrews35

    VBA Function to Convert IP to Decimal

    I have been scouring the web looking for a VBA function to use in Excel to convert an IP address to its decimal representation. I did not find any "open source" functions that would accomplish what I am looking for. So I hacked together this function as a starting point. I am looking for...
  3. gjandrews35

    init (1M) Error on startup.

    I am getting this error upon boot up of a Ultra60 running Solaris10. WARNING: init (1M) exited on fatal signal 9: restarting automatically and it never gets beyond that. It just keeps displaying that error over and over.... I can boot from a CD with no problem. But then I don't know what...
  4. gjandrews35

    Dotted decimal to hex

    I am trying to convert dotted decimal strings into their hex equivalent and vice versa... For example 0.0.244.175.197.51 to 00.00.F4.AF.C5.33 or 0000f4afc533 or 00:00:F4:AF:C5:33 any ideas ? I know that you can print decimals as hex with "%x".. I am writing a perl program to map switch ports.
  5. gjandrews35

    Convert IP to Hostname

    I am looking for an Excel function/VB that will take an IP and return a hostname and vice/versa. Example A1 216.45.19.33 B1 =nslookup(A1) www.tek-tips.com would be in Cell B1 A1 www.tek-tips.com B1 =nslookup(A1) 216.45.19.33
  6. gjandrews35

    Solaris 10

    Has anyone 'deployed' Solaris 10 ? I have setup a test server to try it out and the one thing I found is that you seem to need a working Solaris 9 box and upgrade to 10 ontop of it. The 'beta' 10 I got was missing alot of libraries/compilers etc.... So I had to burn a set of '9' cd's and do...
  7. gjandrews35

    Display port on Set

    Is there a way to display the port a set is on, on the sets display ?
  8. gjandrews35

    Busy Verify button

    In the Avaya Definity Little instruction book there is a feature called 'Busy Verify' but I can't seem to find out how to add it ? Any ideas ? They mention ACA and Security Violations button, Cover message retrieval button, major/minor alarm buttons, Trunk ID buttons & Verify button.

Part and Inventory Search

Back
Top