firewall

Paypal IPN not calling Issue

谁说胖子不能爱 提交于 2019-12-03 17:16:36
I am having some problem regarding Paypal IPN not getting fired on one of my server. Below is the scenario. 1) I have two sites site A(old) is on server X and site B(new) on server Y.Both the sites having identical Paypal express checkout form submission and IPN code. 2) Site A is running smoothly with paypal express checkout form submission and IPN is get fired correctly. 3) But with Site B, though our form gets submitted correctly and payment is successful, IPN is not getting fired. More information : I checked Paypal`s business A/c for any of functionality that may needed to add IP/domain

Avoid Windows Firewall popup with sockets on localhost

南笙酒味 提交于 2019-12-03 16:29:41
问题 I have written a simple Java application that interacts with multiple instances of itself using sockets. The first instance automatically takes on the role of the server, listening on a specific port, and all subsequent instances connect to it. The problem I'm faced with is that Windows Firewall pops up asking me if I want to unblock the program from "accepting incoming network connections". The thing is: it doesn't matter if you leave the application blocked , because the instances of the

Client firewall blocks all ports but 80 and 443, need away to forward requets on port 443 to SSH or HTTPS

做~自己de王妃 提交于 2019-12-03 15:44:55
I am currently working at a client were they have locked down the network, except for ports 80 and 443. I need to connect to our server using SSH, but the same server also runs our website. We do not want to invest in a new server or place a second network card. I have been searching the internet for away to setup our linux server (running CentOS 5), so that there is a daemon listening on port 443 that depending on the client protocol forwards the request to the correct internal port (SSH 22 or HTTPS moved to a differentport_. There are a lot of people on internet looking for this kind

MySQL remote connection [not as usual]

感情迁移 提交于 2019-12-03 14:33:11
问题 I'm not getting to get access to mysql externally. I think it's mysql or firewall stuff or some privilege within the mysql. I already tried doing steps that are on internet. I'll put the process step-by-step to exemplify what I'm doing and to serve as a tutorial for another people that has this same problem: I'm using: -ubuntu server 12.04 -mysql-server5.5 -there is NO hardware firewall just software one 1- First I installed mysql with: sudo apt-get install mysql-server 2- I changed the root

OAuth on a webapp behind a firewall — is it possible?

天涯浪子 提交于 2019-12-03 14:15:28
I'm trying to construct a webapp to add events to an employee's google calendar and would like to use OAuth for authentication. However, my webapp is forced to be on an intranet behind a firewall; the server has outbound internet access, but blocks in-bound access if you aren't on the intranet or VPNing into the intranet. I'm reading up on OAuth, but can't figure out if part of the authentication-handshaking process would be blocked by my firewall. (And I'd like to know if its possible before spending time to implement if it isn't possible; and know so if I run into errors I can debug them).

Restricting MySQL 3306 port with IPTABLES

浪尽此生 提交于 2019-12-03 13:26:30
How to block mysql port 3306 for everybody, but allow it for a specific IP? This is what I currently do: iptables -I INPUT 1 -p tcp --dport 3306 -j ACCEPT user259412 You need multiple rules to do that. In most cases, what will happen with a connection depends on the first rule, which it matches. So, first we accept our friends connection, second, we drop anybody other. Voila! iptables -I INPUT 1 -p tcp -s 1.2.3.4 --dport 3306 -j ACCEPT iptables -I INPUT 2 -p tcp --dport 3306 -j DROP 来源: https://stackoverflow.com/questions/22309726/restricting-mysql-3306-port-with-iptables

Connecting to gitosis server through an SSH tunnel

荒凉一梦 提交于 2019-12-03 12:25:42
问题 I've got an SSH tunnel setup on my macbook, like this... $ ssh -o ServerAliveInterval=3 -N -L 22222:gitosis-server:22 user@firewall.domain.com So I can ssh to localhost:22222 and will end up on the gitosis-server behind the firewall. I've created a local id_rsa.pub file, copied it into the gitosis server(running Centos5), and imported it into gitosis using... # sudo -H -u gitosis gitosis-init It was successful as I can see the public key in /var/lib/gitosis/.ssh/authorized_keys. Back on my

Will html5 websockets be crippled by firewalls?

和自甴很熟 提交于 2019-12-03 10:29:32
问题 I'm extremely excited about html5's websockets spec but I have a concern. These days everyone is operating off of some network, with routers (wired/wireless) that have built in firewalls, windows has a built in firewall too. With that in mind when the server attempts to connect back to the browser that started the websocket handshake will it fail for the vast majority of users? (most people have no idea how to set up port forwarding on their routers) Or is my thinking incorrect and it will go

Using PacketFilter to transparently proxy packets in OS X

你说的曾经没有我的故事 提交于 2019-12-03 08:35:33
问题 There is a cool utility out there called sshuttle. It has depended on ipfw to forward packets in the past. It appears that ipfw is mostly broken in Mavericks and the advice is to use PacketFilter for this now. I've spent most of the day looking at PacketFilter and it appears ipfw has a feature that PacketFilter does not support (hope I'm wrong about this). The following rule: ipfw -q add 12300 fwd 127.0.0.1,12300 tcp from any to any not ipttl 42 keep-state setup will forward all traffic to

Create firewall rule to open port per application programmatically in c#

柔情痞子 提交于 2019-12-03 08:05:12
I need to open specific port for my application. I have tried using INetFwAuthorizedApplication rule per application for all ports. fwMgr.LocalPolicy.CurrentProfile.AuthorizedApplications.Add(app) Alternatively open one port for all appllications using INetFwOpenPort . firewallManager.LocalPolicy.CurrentProfile.GloballyOpenPorts.Add(port) Is there any way to programmatically open only single port per application programmatically? I can do it manually through firewall settings. Colin Pickard There's a question about blocking connections with an answer with instructions for creating firewall