Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mimic a slow internet connection (mac)

Anyone have a good technique for checking sites over a slower connection on osx?

Looking at posts on here, some people have recommended sloppy, which doesn't appear to do anything, just loads sites at normal speed. Any other techniques out there? I have 50mb broadband and it's difficult to judge page speeds at the moment.

like image 893
Michael Watson Avatar asked Nov 04 '22 20:11

Michael Watson


2 Answers

Video demo of Dummynet used to throttle IP video streaming on OSX. According to the website, it is already installed in a standard OSX. As Jeff Foster mentioned, the same question is on SuperUser. There I also found ThrottledCLI suggested by Robbie.

like image 133
Prof. Falken Avatar answered Nov 09 '22 12:11

Prof. Falken


This might help you to simulate 3G on Mac:

sudo ipfw add pipe 1 src-port http
ipfw pipe 1 config delay 200 bw 700kbit/s

Remove those settings and go back to normal speeds:

ipfw flush

Also check this out.

like image 41
2 revs, 2 users 78% Avatar answered Nov 09 '22 14:11

2 revs, 2 users 78%