1

When using RIPE web DB search system, you can add the "-B" flag to list hidden attributes of an object.

I'm trying to find a way of adding the "-B" flag somewhere within the following command:

> whois -h whois.ripe.net ASXXXXX 

However, the whois program itself returns that it's not a valid flag.

I've tried echoing it in via stdin with no joy.

Squeeb
  • 152
  • 1
  • 13

2 Answers2

1

I'm a big fan of GNU jwhois. It supports RIPE extensions and has many other options and is configurable beyond belief. You could use this command for your request:

jwhois -h whois.ripe.net -- -B ASXXX
Mei
  • 4,560
  • 8
  • 44
  • 53
0

-B is specific to RIPE so not supported in the generic client. Fortunately the whois protocol is exceptionally simple. This means you can telnet to port 43 on whois.ripe.net and type in the following:

-B ASXXXXXX

This will give you the output you're looking for.

Niall Donegan
  • 3,859
  • 19
  • 17