firewall

Configure firewall to enable XAMPP working over LAN

旧巷老猫 提交于 2019-12-31 21:30:25
问题 When I turn off the firewall, I can access my XAMPP website through other LAN computers. When I turn on firewall then I cannot connect to the machine anymore. Could someone tell me what's happening? my os is windows xp. thanks. 回答1: Go to Control panel - > go to Windows Firewall -> then Advance Settings -> Click Inbound Rules right Click the inbound rules and select "New Rule..." select option port and click next select all local ports or your port number for apache server. and click next

How to allow specific IPs though the firewall? [closed]

[亡魂溺海] 提交于 2019-12-31 07:31:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I have a local Apache server and I want it to be accessible from other machine. I found out that it's possible after turning off (the external, Windows based) firewall. Can I make it accessible from a specific IP without turning the firewall off? 回答1: Go to Windows Firewall GUI and add an exception from the

What is the IP address range for foursquare API? [closed]

梦想与她 提交于 2019-12-31 05:28:23
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I'm developing a Web service using a VM behind a firewall on a University. I need to know what a range of IP address to give to our IT guy so we can get access to calls from foursquare. 回答1: You'll never be able to reliably pin this down. It's not as if they are using one subnet. Your IT guy needs to open up

Check for Third Party Firewalls on a Machine

不羁的心 提交于 2019-12-30 01:16:07
问题 I am working on doing a check for Firewalls. The following code quite easily checks the status of the default Windows Firewall: INetFwMgr manager = GetFireWallManager(); bool isFirewallEnabled = manager.LocalPolicy.CurrentProfile.FirewallEnabled; if (isFirewallEnabled == false) { Console.WriteLine("Firewall is not enabled."); } else { Consoe.WriteLine("Firewall is enabled."); } Console.ReadLine(); private static INetFwMgr GetFireWallManager() { Type objectType = Type.GetTypeFromCLSID(new Guid

opening websites using urllib2 from behind corporate firewall - 11004 getaddrinfo failed

坚强是说给别人听的谎言 提交于 2019-12-28 02:11:15
问题 I am trying to access a website from behind corporate firewall using below:- password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm() password_mgr.add_password(None, url, username, password) auth_handler = urllib2.HTTPBasicAuthHandler(password_mgr) opener = urllib2.build_opener(auth_handler) urllib2.install_opener(opener) conn = urllib2.urlopen('http://python.org') Getting error URLError: <urlopen error [Errno 11004] getaddrinfo failed> I have tried with different handlers (tried ProxyHandler

How to use Firebase behind Firewall / Proxy?

半世苍凉 提交于 2019-12-25 20:28:23
问题 We are running a simple application that connects to Firebase are reads some data. It fails to connect with the following timeout error: @firebase/database: FIREBASE WARNING: {"code":"app/invalid-credential", "message":"Credential implementation provided to initializeApp() via the \"credential\" property failed to fetch a valid Google OAuth2 access token with the following error: \"Failed to parse access token response: Error: Error while making request: connect ETIMEDOUT We are behind

How can I speed up powershell to get firewall rules on windows 10?

瘦欲@ 提交于 2019-12-25 20:01:15
问题 I need to enumerate all firewall rules on windows 10 using PowerShell. I switched to PowerShell from netsh because some built-in rules were getting funny names like @{microsoft.windows.shellexperiencehost_10.0.17134.1_neutral_neutral_cw5n1h2txyewy?ms-resource://microsoft.windows.shellexperiencehost/resources/pkgdisplayname} which I was unable to manage with netsh . Switching to PowerShell shows that the real name was a UID and fixed my problem but the code is really slow to run: PS C:\Users

We noticed that your Google Cloud Project has open project firewalls

眉间皱痕 提交于 2019-12-25 09:14:11
问题 I got an email from: saying: (console.cloud.google.com) We noticed that your Google Cloud Project has open project firewalls. This could make your instance vulnerable to compromises since anyone on the internet can access and establish a connection to the instance. The following project has open firewalls: Playchat (ID: playchat-4cc1d) Google Cloud Platform provides the flexibility for you to configure your project to your specific needs. We recommend updating your settings to only allow

Not able to connect to internet from Amazon EC2 instance linux box

混江龙づ霸主 提交于 2019-12-25 01:46:53
问题 In the amazon EC2 instance, i have set the set the inbound/outbound of security group to MY-IP address. When i try to install the mysql client or some other software, its saying connection timeout. But when i make the inbound/outbound to anywhere ie 0.0.0.0/00, then i am able to install the software. But i don't want to expose the EC2 instance requests to everyone. How to connect to Internet and install the software with restricted security groups. Please can u help out on this. 回答1: To be

Connecting Kubernetes cluster to Redis on the the same GCP network

那年仲夏 提交于 2019-12-24 14:43:06
问题 I'm running a Kubernetes cluster and HA redis VMs on the same VPC on Google Cloud Platform. ICMP and traffic on all TCP and UDP ports is allowed on the subnet 10.128.0.0/20. Kubernetes has its own internal network, 10.12.0.0/14, but the cluster runs on VMs inside of 10.128.0.0/20, same as redis VM. However, even though the VMs inside of 10.128.0.0/20 see each other, I can't ping the same VM or connect to its ports while running commands from Kubernetes pod. What would I need to modify either