Hello everyone, I'd love for some advice on troubl...
# rancher-desktop
v
Hello everyone, I'd love for some advice on troubleshooting networking issues with Rancher Desktop Kubernetes on Windows To keep it really simple: How do I view the ip rules that are actually created?
I tried
Copy code
# wsl -d rancher-desktop
# iptables -vnL
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination
p
Use
rdctl shell
instead of
wsl -d
(because we create a network namespace, and
rdctl shell
gets you inside that namespace).
v
OMG yes! Thank you that did it
Now I just need to sort out my networking issue 🙂