EzDevInfo.com

netgear interview questions

Top netgear frequently asked interview questions

Redirect customers to my Facebook page when they sign in to my wifi

How can I configure my netgear d6300 router to redirect to my Facebook page when customers login?

I have seen it is possible with netgear r6300 however I have the d6300 model and wish to have a re-direct to my Facebook page upon customers logging i to my wifi!

I can't seem to find anything relative to d6300,

Is this possible?

I don't mind if it is a hack just any solution please.

Cheers


Source: (StackOverflow)

Mapping Piwigo on Docker to the Host machine's LAN address

I have a Piwigo website running on docker accessible at 192.168.99.100:32XXX from the docker host -- Mac (10.0.0.5). Mac is connected to a netgear router. I need to set up port forwarding on my netgear router so that this can be accessed from the outside world.

Outside world -> netgear router -> port forwarding to mac -> mac mapped to piwigo running on docker. Is this a good way to set it up? Does it need a reverse proxy like set up on Mac to achieve this? Or can I directly map the Piwigo on docker IP?


Source: (StackOverflow)

Advertisements

Can't get 2 of my 3 wireless networks working on my Netgear Nighthawk R6 R8000 with DD-WRT

This problem has been frustrating me for a while, and I finally got around to asking for help here.

I have a Netgear Nighthawk X6 R8000 router, and I installed DD-WRT v24-sp2 (02/15/15) kongac - (SVN revision 26285M) some time ago (I think it was roughly a year ago, but I'm not positive)

My issue is that although I can get my 2.4 Ghz antenna working fine (WL1), I cannot get either of the 5 Ghz networks to work. They are WL0 and WL2.

Although I have them both set to SSID broadcast, they never appear when I'm looking for them from any of my 5 Ghz devices.

I've tried to connect manually from my new laptop running Windows 10 Pro and a 5 Ghz iPad. I know that the laptop has a 5 Ghz wireless card, as do some of the other devices in my house (a new iPad, a new Macbook Pro)

I do like the features of DD-WRT and would very much like to continue running it. However, I've never been able to get the out of the box performance that i originally saw on the Nighthawk.

Thanks very much for any help


Source: (StackOverflow)

Reconnect Python Script for Netgear DGN2200v4

i need a script for my Netgear DGN2200v4 that let me change ip every x seconds. Searching online i find this code:

    #!/usr/bin/env python2.7

import re
import urllib2
from base64 import b64encode
from time import sleep

BASE_URL = 'http://192.168.0.1/'
USERNAME = 'admin'
PASSWORD = 'admin'

id_regex = re.compile('setup.cgi\?id=(\w+)"')

auth = "Basic %s" % b64encode("%s:%s" % (USERNAME, PASSWORD))

def load_html(url, data = None):
    request = urllib2.Request(BASE_URL + url, data,
                              {"Authorization": auth})
    result = urllib2.urlopen(request)
    return result.read()

# Evito eccezione Unauthorized
try:
    load_html('')
except urllib2.HTTPError:
    pass

# Chiamo la schermata di riepilogo
html = load_html('setup.cgi?next_file=RST_st_poe.htm')
ID = id_regex.search(html).group(1)

# Lancio la disconnessione
load_html('setup.cgi?id=' + ID,
          'todo=disconnect&this_file=RST_st_poe.htm&next_file=RST_st_poe.htm&SID=')

# Attendo 3 secondi
sleep(3)

# Chiamo la schermata di riepilogo
html = load_html('setup.cgi?next_file=RST_st_poe.htm')
ID = id_regex.search(html).group(1)

# Lancio la riconnessione
load_html('setup.cgi?id=' + ID,
          'todo=connect&this_file=RST_st_poe.htm&next_file=RST_st_poe.htm&SID=')

# Attendo 7 secondi
sleep(7)

# Logout
load_html('setup.cgi?todo=logout')

Source

but it doesn't work on my pc. I've chanded 'USERNAME' and 'PASSWORD' with my credential and setted PPPOE protocol and this is the log.

Traceback (most recent call last):
  File "C:\Users\x\Documents\dgnd3700.py", line 31, in <module>
    html = load_html('setup.cgi?next_file=RST_st_poe.htm')
  File "C:\Users\x\Documents\dgnd3700.py", line 19, in load_html
    result = urllib2.urlopen(request)
  File "C:\Python27\lib\urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "C:\Python27\lib\urllib2.py", line 397, in open
    response = meth(req, response)
  File "C:\Python27\lib\urllib2.py", line 510, in http_response
    'http', request, response, code, msg, hdrs)
  File "C:\Python27\lib\urllib2.py", line 435, in error
    return self._call_chain(*args)
  File "C:\Python27\lib\urllib2.py", line 369, in _call_chain
    result = func(*args)
  File "C:\Python27\lib\urllib2.py", line 518, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 404: Not Found

How can i solve? Thanks in advice


Source: (StackOverflow)