michael
michael

Reputation: 585

how to pass ip address and portnumber as url

To pass url i have ip address and port number , how can that be send as http url

ex: ip address 10.5.90.948
port number as 71
http://10.5.90.948/71

does that takes to the url? if not how it can be passes as http address.

thanks,

michaeld

Upvotes: 12

Views: 48789

Answers (2)

clyfe
clyfe

Reputation: 23770

http://10.5.90.948:71

scheme://host:port

Upvotes: 24

David Precious
David Precious

Reputation: 6553

http://ip:port/ - e.g. http://127.0.0.1:8080/

(Also, I expect it's just a made up example, but the IP address you quoted is of course not valid)

Upvotes: 5

Related Questions