|
Ok, it's friday afternoon, and i've had a long week so would appreciate some help! Currently, i have a list of IP ranges, as follows:
List<IPRange> ipRanges = new List<IPRange>(); ipRanges.Add(new IPRange { From = "145.36.0.0", To = "145.3...
Started by seanxe on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Would be to have an explicit IP Address class and a roll your own set of comparison logic (I'm rashlyConvert Each IP-address to number , and then check if the user ip address is between those numbers convert the IP ....
|
|
I have IP 500v2 8.43 with 9508 sets.
When I press the contact button all users are there plus the hunt groups. Is there any way to delete the hunt group names?
Answer Snippets (Read the full thread at tek-tips):
|
|
What is the correct way to group two different sets of IP addresses in a network? My current network consists of one router and all devices are on one network connected to the router. I want to split it due to IP phones being added. So if I want to split...
Started by dude with a dog on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at yahoo):
192.168.1.129-254 with 255.255.255.128 mask won't see 192.168.0.1.
Can you configure 2 interfaces for you router? I don't think you can do it on any cheap home router but professional CISCO ones can allow you do it .
|
Ask your Facebook Friends
|
My ISP just finalized installing the fiber in my building and gave me two sets of IPs. One for my firewall and a set for my devices.
The way the installer said it to me is that I have to set the WAN of my router/firewall to xx.xx.xx.2 and the gateway ...
Started by AkkerKid on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at pfsense):
This kind of configuration is described in the book pfSense: The Definitive Guide through chapters 6, 7 and 8 and particularly in section 6.7 (Methods of using additional public... .
I am not 100% sure but probably you have to use manual outbound NAT for that .
|
|
Hi all,
Long time lurker, first time poster. I've recently started installing IP Office after many years installing Norstar. I like the system, but seem to have an odd issue on all 4 of the systems I have installed.
I am using 9508 sets on IP Office 7...
Answer Snippets (Read the full thread at tek-tips):
Dain Bramaged (Avaya Search tool http://tinyurl.com/bas1234 ) I think that 7.0.23 started... .
It works! Now if only I could remember what I did.. .
Look into the phone menu, try to turn off AGC (audio gain control) this option is for handset/speaker/headset .
|
|
Hi
I have to change the CUCM ip address in CCX (8.5.1.11001-35).
So in the cli:
- I enter set uccx provider ip axl 0.0.0.0
- And I get no response.... no error no success
- restarting tomcat and ccx engine
- nothing changed in the WebUi
- go to cli and...
Started by 2philipp-gantert on
, 13 posts
by 3 people.
Answer Snippets (Read the full thread at cisco):
This command should
admin: set uccx provider ip axl 10.78.14.140
Cisco Unified Communications Manager IP is set
admin....
Hi Phil,
set uccx provider ip axl
Sets the Unified CCX AXL provider IP address.
|
|
In C/C++, you can use the regular gethostbyname() call to turn a dotted-IP address string ("127.0.0.1" in the case of localhost) into a structure suitable for standard socket calls.
Now how do you translate it back? I know I can do some bit-shifting to...
Started by Kevin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
See here: http://beej.us/guide/bgnet/output/html/multipage/syscalls....
First of all, in new code you should generally prefer using getaddrinfo() to gethostbyname(), which is old and clunky and is tough to use to support both IPv4 and IPv6 .
I'd use inet_ntop.
|
|
For test purposes I want to change the return value of request.remote_ip. While being on my development machine it returns always 127.0.0.1 as it should but I would like to give myself different fake IPs to test the correct behavior of my app without ...
Started by Wolax on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Everytime you change the value you have to restart; '1.2.3.4')
request.remote_ip now returns 1.2.3.4
You can cheat a bit by making a mutator for the remote_ip value in....
This sets remote_ip to 1.2.3.4 when the server starts.
|
|
I am trying to limit traffic to my website so that people trying to screenscrape mass amounts of data will be blocked after a while. I am supposed to do this based on the ip of the incoming request. I believe i have this ip limiting functionality written...
Started by adept on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You could if this is what you are looking for... .
Then write a simple app that sets the src address to each of the impersonated IP addresses, connect where the IP addresses you are impersonating point to the MAC address of the server.
|
|
Is there any way you can find the ip of the server that the browser is connected to? For e.g. if the browser is accessing http://www.google.com , can we tell in any way what ip it is connected to? This is very useful in cases where DNS round robin is ...
Started by John on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Self.location.host Sets or retrieves the hostname and port number of the location or self.location....
These variables might be helpful.
Not sure how to get the IP address specifically, but the location object provides part of the answer.
|