i have noticed certain sites which allows limited hit per IP so can i programatically make them feel that requests are not coming from the same IP ,
well i am not
The "proper" way, if I can use that term for something unwholesome, to make sites think a different IP has made a request is to use a proxied connection. The site is probably actually checking the source IP address, which is not a property of the HTTP request. So, the response will be delivered to your "other" IP. You should look at ssh -D
, or privoxy
, or another piece of software to funnel all your traffic with the site through a remote intermediary.