alberk8
alberk8
Hi, I get the response from Digital Ocean. May I ask, if this would cause any ill effect on Rancher after the update? ``` $ kubectl get validatingwebhookconfigurations rancher.cattle.io -o...
I find that manually editing the failure policy will last for a short while (30 minutes) before it get reverted to default.
> @alberk8 How did you solve it? This is what I did. **1) Open the Digital Ocean Kubernetes Update Page (this is to get ready) because the Rancher will revert...
> Do you mean this? https://github.com/SuperSocket/SuperSocket.ProxyServer > > This one is still based on SuperSocket 1.6.*. I will spend some time to upgrade it to SuperSocket 2.0. I think is...
> I also asked a similar question before. I used Haproxy reverse proxy, so the client IP becomes the IP of the reverse proxy. Haproxy supports the send-proxy protocol and...
I tried to adding EnabledProxyProtocol into appsettings and it does not seems to work what else do I need to do? Thank you. **Update**: The latest myget nuget seems to...
I have tested and it looks like the Server EndPoint IP is in **reverse order.** The Server Endpoint should read 192.168.2.15 The Client IP 172.27.0.3 is the IP of the...
Yes the IP for the ProxyInfo is in reverse order ``` .UsePackageHandler(async (session, package) => { Console.WriteLine($"Server EndPioint {((IPEndPoint)session.RemoteEndPoint).Address.ToString()} Client EndPoint {((IPEndPoint)session.Connection.RemoteEndPoint).Address.ToString()} "); Console.WriteLine($"Proxy Info Source: {session.Connection.ProxyInfo.SourceIPAddress.ToString()} Destination: {session.Connection.ProxyInfo.SourceIPAddress.ToString()}"); }...
I am using Proxy Protocol Version 2 and you code looks right according to Proxy Protocol specs. The reverse proxy I am using is traefik v3.1.1, Have you tested with...
> Pushed one fix. Tested and now the IPV4 is the correct order. I looked at your code again, I think you need to reverse the IPV6 also (I have...