I recently installed the new version and trying to change the url

Use this category only if you have build GSE or components thereof from sources .

Please read About the Greenbone Source Edition (GSE) and About GVM Architecture before posting.

When posting you should provide information about your environment using the following template:

GVM versions

Greenbone Security Assistant 8.0.0

Greenbone Vulnerability Manager 8.0.0

OpenVAS Scanner 6.0.0

Operating system: CentOS Linux release 7.7.1908 (Core)

Been trying to figure it out for a couple hours, with no luck

There are two thing i am trying to figure out how to do:

  1. How to change the url eg: 192.168.254.29:9392 to eg: openvasscanner.cat.com
  2. The second how to import ssl cert like commodo (created the cert already)

Thank you.

I suppose you’re trying to setup a remote scanner. Under GVM-9, you need to start openvasmd on the slave node to listen on network socket.

/usr/local/sbin/openvasmd --listen=192.168.254.29 --port 9392

Finally, on the master, you need to create the slave scanner with the following:

openvasmd --create-scanner=Your_slave_scanner_name --scanner-host=192.168.254.29 --scanner-port=9392 --scanner-type=OpenVAS --scanner-ca-pub=your-cacert.pem --scanner-key-pub=your-servercert.pem --scanner-key-priv=your-serverkey.pem

Verify your scanner with:

openvasmd --verify-scanner=your-scanner-uuid

If it works, then go back to gsad and your newly created scanner should appears in the scanner list.