Web Browsing

One way to use mirrord’s targetless mode is to set up your browser to use the IP address of the remote target. This way, you can browse the web as if you were in the same location as the remote target. Below is a guide on how to do this with Google Chrome.

Prerequisites #

  1. Install microsocks (via brew or apt)
  2. Install “Socks5 Configurator” Chrome extension

Steps #

  1. In a terminal session, trigger microsocks using mirrord.
    • If you want to use a specific target’s network: mirrord exec -t deployment/my_deployment microsocks
    • If you just want a specific namespace networking: mirrord exec -a namespace microsocks
    • And you can just do: mirrord exec microsocks if you want to use your current namespace.
  2. In a Chrome window:
    1. Open the Socks5 Configurator extension
    2. Make sure the “Socks5 Proxy” is enabled
    3. Type in its respective textbox 127.0.0.1:1080
    4. Hit the save button
  3. That’s it! You can verify your IP address has changed via a quick “what is my ip address” search in Google

What’s next? #

  1. If you’d like to intercept traffic rather than mirror it so that your local process is the one answering the remote requests, check out this guide. Note that you can even filter which traffic you intercept!
  2. If your local process reads from a queue, you might want to test out the pause feature, which temporarily pauses the remote target so it doesn’t compete with your local process for queue messages.
  3. If you just want to learn more about mirrord, why not check out our architecture or configuration sections?