hi friends,
am currently working out on Raspberry pi as a low cost HD Surveillance camera.now i want to create a static ip address to my pi and then access the live streaming with that.can i do that??
If your router supports that. Most routers I've used don't have that feature.klricks wrote:Use IP to MAC address reservations via DHCP instead of static in your router. ...
The routers I have used over the past several years have that feature. My old WRT54G did not have it, but could be added by flashing a 3rd party firmware. DD-WRTDougieLawson wrote:If your router supports that. Most routers I've used don't have that feature.klricks wrote:Use IP to MAC address reservations via DHCP instead of static in your router. ...
Code: Select all
iface eth0 inet dhcp
Code: Select all
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
gateway 192.168.0.1