firewall

az storage account network-rule not working for Microsoft Hosted agent(Azure DevOps)

谁都会走 提交于 2021-02-19 09:01:38
问题 I have to delete all the files in azure blob storage(specific container) automatically via azure release pipelines. So I have configured a task to get the IP address of Microsoft agent dynamically and add the IP address into blob Firewall. Below script working successfully sometimes, but I'm not able to see the IP in the Firewall list. Also same script is failing many times and throwing a error like The request may be blocked by network rules of storage account. Please check network rule set

az storage account network-rule not working for Microsoft Hosted agent(Azure DevOps)

雨燕双飞 提交于 2021-02-19 09:01:19
问题 I have to delete all the files in azure blob storage(specific container) automatically via azure release pipelines. So I have configured a task to get the IP address of Microsoft agent dynamically and add the IP address into blob Firewall. Below script working successfully sometimes, but I'm not able to see the IP in the Firewall list. Also same script is failing many times and throwing a error like The request may be blocked by network rules of storage account. Please check network rule set

Windows Firewall - Laravel Artisan Serve - Allow Port in Inbound Rule (not working)

限于喜欢 提交于 2021-02-11 15:19:15
问题 I'm using Laravel..And i develop a website... And I want try to access the site from other devices.... . . I run php artisan serve --port=4042 --host=0.0.0.0 in my computer (windows 10).. And I allow port 4042 by create new Inbound Rules in Windows Firewall (as in picture below): But when I access from my mobile phone, it shows error as in picture below: But I can access the web if I turn off the whole Firewall.... But I dont want disable the whole Firewall, I just want to allow port 4042

Windows Firewall - Laravel Artisan Serve - Allow Port in Inbound Rule (not working)

前提是你 提交于 2021-02-11 15:16:39
问题 I'm using Laravel..And i develop a website... And I want try to access the site from other devices.... . . I run php artisan serve --port=4042 --host=0.0.0.0 in my computer (windows 10).. And I allow port 4042 by create new Inbound Rules in Windows Firewall (as in picture below): But when I access from my mobile phone, it shows error as in picture below: But I can access the web if I turn off the whole Firewall.... But I dont want disable the whole Firewall, I just want to allow port 4042

Does the server Firewall which allows Outgoing traffic on Port 80/TCP also allow on Port 80/UDP?

邮差的信 提交于 2021-02-10 18:32:50
问题 Is the Windows Firewall which accept outgoing traffic on port 80/TCP allow outgoing traffic also when we use UDP protocol. Does a Firewall in most cases control the port number only or controls the used Protocol also ? 回答1: TCP and UDP ports are entirely different from each other. So, TCP/80 has nothing to do with UDP/80, except for the number. From a firewall's perspective, they are entirely separate things with separate rules. 来源: https://stackoverflow.com/questions/9280136/does-the-server

AppEngine firewall for the particular service

丶灬走出姿态 提交于 2021-02-08 15:14:34
问题 I have to configure a firewall for the particular service from my AppEngine apps. Do you know how can I do it? As far as I see App engine firewall works for all services Thanks in advance 回答1: It's not possible to do, and it has been previously raised in the Public Issue Tracker. As mentioned there, your best choice would be to get that service 'out' of your proyect, as in deploy it in a different project, and there, use the firewall rules that you want to use. 来源: https://stackoverflow.com

AppEngine firewall for the particular service

自闭症网瘾萝莉.ら 提交于 2021-02-08 15:13:22
问题 I have to configure a firewall for the particular service from my AppEngine apps. Do you know how can I do it? As far as I see App engine firewall works for all services Thanks in advance 回答1: It's not possible to do, and it has been previously raised in the Public Issue Tracker. As mentioned there, your best choice would be to get that service 'out' of your proyect, as in deploy it in a different project, and there, use the firewall rules that you want to use. 来源: https://stackoverflow.com

How to properly configure VPC firewall for App Engine instances?

我们两清 提交于 2021-02-08 05:01:41
问题 We are trying to deploy a micro-service based application using google app engine (mainly flexible instances), having a gateway on the default service and a few Microservices providing the business logic. You might think of it as : foo.appspot.com service1.foo.appspot.com service2.foo.appspot.com as it is done here I would like the services to be accessible only from the gateway (and maybe few other machines), and not from the outside, but I couldn't get it to work. I've been able to set all

speed up powershell's remove-netfirewallrule

巧了我就是萌 提交于 2021-02-07 10:30:58
问题 I need to remove a lot of metro app related firewall rules in Windows 10 with powershell. It seems very slow compared to netsh or regedit. Anyway to speed it up? # clean firewall rules, deleting profile doesn't get rid of them # string (sid) 45 in length, no existing profiles # 9000 rules take about 90 minutes to delete $profiles = get-wmiobject -class win32_userprofile # I'm only dumping to a file to convert pscustomobject to string for sort get-netfirewallrule -all | select-object -property

HTTP Error 307 - Temporary redirect in python script

五迷三道 提交于 2021-01-28 19:02:13
问题 I have used below codes in my script, the code works fine in my personal PC, however the codes not work if i using LAN(using zscaler -firewall/gateway) and received error message " Temporary Redirect ". Note: i pasted the url directly in browser and noticed, browser redirects to some zscaler url (https://gateway.zscaler.net/auT?origurl=http%3AXXXX) and went to expected page and the page is not blocked. Same not happening while running script and control goes to except block of the script. Is