Not able to run the website outside the company network

Hi,

How we can set proxy on the beagleBone device to connect to the internet.

Thanks,
Anshul

if you are able to login to your BB Device

put this in your ~/.bashrc

export http_proxy=“http://username:password@hostname:port
export https_proxy=“https://username:password@hostname:port
export ftp_proxy=“ftp://username:password@hostname:port
export socks_proxy=“socks://username:password@hostname:port

and put this in your /etc/apt/apt.conf

Acquire::http::proxy “http://username:password@hostname:port/”;
Acquire::https::proxy “https://username:password@hostname:port/”;
Acquire::ftp::proxy “ftp://username:password@hostname:port/”;
Acquire::socks::proxy “socks://username:password@hostname:port/”;

replace the bold items with their actual value