I'm playing around with Rippled RPC API ;
I'm specifically looking at the Admin Access;
https://xrpl.org/get-started-using-http-websocket-apis.html#admin-access
Admin Access The API methods are divided into Public Methods and Admin Methods so that organizations can offer public servers for the benefit of the community. To access admin methods, or admin functionality of public methods, you must connect to the API on a port and IP address marked as admin in the server's config file.
The example config file listens for connections on the local loopback network (127.0.0.1), with JSON-RPC (HTTP) on port 5005 and WebSocket (WS) on port 6006, and treats all connected clients as admin.
By Default in the example config it treats all connected clients as admin; is there a way to set a username and password for admin functions.
A work around I found would be to get the admin port restricted in firewall with an exception rule however is it possible to set a username and password in the config for the admin port instead?
thanks for any insight into this.