Reputation: 1
Can anyone tell how could I check my google Colaboratory's hosted runtime's IP Address and Port ?
Upvotes: 0
Views: 4387
Reputation: 51
#Gives ip address
!hostname -I
#gives ip address
!curl ipecho.net/plain
#Gives ip addresses with port numbers
!sudo lsof -i -P -n | grep LISTEN
Upvotes: 5