ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Best way to maintain some remote control but not absolute?

    IT Discussion
    8
    101
    9.2k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • guyinpvG
      guyinpv @scottalanmiller
      last edited by

      @scottalanmiller said in Best way to maintain some remote control but not absolute?:

      @guyinpv said in Best way to maintain some remote control but not absolute?:

      Lastly, I'll probably throw XC on the boss's workstation as a means of dealing with VMs, but otherwise I should be able to do most work just getting directly into the guests.

      Move them to XO and solve that issue. No need for workstation access or Windows licenses.

      Then I still have to remote in somewhere to access XO unless you're saying I should open it up to the world and use Zerotier?
      That means I would need 2 more VMs on the server, one for jump and other for XO.

      scottalanmillerS 1 Reply Last reply Reply Quote 0
      • scottalanmillerS
        scottalanmiller @guyinpv
        last edited by

        @guyinpv said in Best way to maintain some remote control but not absolute?:

        Then I still have to remote in somewhere to access XO unless you're saying I should open it up to the world and use Zerotier?
        That means I would need 2 more VMs on the server, one for jump and other for XO.

        One fewer, right? Either you need the Jump OR ZeroTier, but not both. But for access to a remote Windows machine you need ZeroTier + RDP or similar. Doesn't XO almost make it easier? And it lets you use a tiny Linux VM instead of a Windows machine that is either expensive or used for something else.

        guyinpvG 1 Reply Last reply Reply Quote 1
        • DashrenderD
          Dashrender
          last edited by

          where would you install ZT? on the XO VM? I suppose that would work.

          So his management would be something like :

          SC to control Windows PCs and windows server VMs
          ZT to manage XO to manage XS

          Personally I wouldn't install ZT unless you're going to install it EVERYWHERE at that client.

          scottalanmillerS 2 Replies Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller @Dashrender
            last edited by

            @Dashrender said in Best way to maintain some remote control but not absolute?:

            where would you install ZT? on the XO VM? I suppose that would work.

            Definitely there.

            1 Reply Last reply Reply Quote 0
            • scottalanmillerS
              scottalanmiller @Dashrender
              last edited by

              @Dashrender said in Best way to maintain some remote control but not absolute?:

              SC to control Windows PCs and windows server VMs
              ZT to manage XO to manage XS

              If you are using a VPN you presumably always have a dedicated machine for that client. So you just.... open a web browser. That's it. Nothing more to it. It's always there, always ready to go. No SC, no PC, no Windows, no hops.

              1 Reply Last reply Reply Quote 0
              • DashrenderD
                Dashrender
                last edited by

                Where did VPN come into the discussion?

                stacksofplatesS scottalanmillerS 2 Replies Last reply Reply Quote 0
                • guyinpvG
                  guyinpv @scottalanmiller
                  last edited by

                  Remote Utilities allows use up to 10 clients including business for free. Chances are good I'll hook that up to the server. From there I suppose I could RDP to workstations.
                  Doesn't take care of using XO though. Maybe I would hook up RU to one workstation as well just in case. Otherwise I could access XO from the server VM, assuming it isn't down. If it is down, then I could get to the workstation instead and try to access XO. If that doesn't work, something is up with the hardware or network.

                  1 Reply Last reply Reply Quote 0
                  • stacksofplatesS
                    stacksofplates @Dashrender
                    last edited by

                    @Dashrender said in Best way to maintain some remote control but not absolute?:

                    Where did VPN come into the discussion?

                    ZeroTier

                    1 Reply Last reply Reply Quote 1
                    • stacksofplatesS
                      stacksofplates
                      last edited by stacksofplates

                      So if you don't want to use ZT here's what I would do (and currently do when not using ZT). Set up a jump box and use dynamic tunnels for your access (or local tunnels but you need to know the ports ahead of time).

                      For the dynamic tunnels you can use:

                      ssh -D 1080 user@host
                      

                      This turn your SSH client into a SOCKS proxy. You can tell your browser to use a SOCKS proxy on port 1080 (default port) and just browse to the normal addresses on the remote network.

                      If you want to use local tunneling then you need:

                      ssh -L <localport>:<remoteip>:<remoteport> user@host
                      

                      Use as many -L arguments as you need. You can also do both together.

                      This will give you access to anything you need, fully encrypted. RDP is possible with Remmina or the Remote Desktop Viewer application, along with VNC, SPICE, NX, and others.

                      1 Reply Last reply Reply Quote 0
                      • scottalanmillerS
                        scottalanmiller @Dashrender
                        last edited by

                        @Dashrender said in Best way to maintain some remote control but not absolute?:

                        Where did VPN come into the discussion?

                        I was answering your questions about the ZT VPN...

                        0_1472165913288_Screenshot from 2016-08-25 18-58-18.png

                        DashrenderD 1 Reply Last reply Reply Quote 0
                        • stacksofplatesS
                          stacksofplates
                          last edited by

                          For a kind of the out of the box thinking setup, you could just make a Guacamole VM and add all the remote hosts to it. Then just:

                          ssh -L <localport>:<remoteIP>:80 user@guacamolehost
                          

                          Then just open your browser to localhost:<localport> and have full access.

                          1 Reply Last reply Reply Quote 0
                          • DashrenderD
                            Dashrender @scottalanmiller
                            last edited by

                            @scottalanmiller said in Best way to maintain some remote control but not absolute?:

                            @Dashrender said in Best way to maintain some remote control but not absolute?:

                            Where did VPN come into the discussion?

                            I was answering your questions about the ZT VPN...

                            0_1472165913288_Screenshot from 2016-08-25 18-58-18.png

                            Aww gotcha. ZT is definitely cool tech, but the inherent DNS issues make it a challenge. And unless you install ZT on all devices, you don't really have VPN to their network, only to those devices.

                            scottalanmillerS 1 Reply Last reply Reply Quote 0
                            • scottalanmillerS
                              scottalanmiller @Dashrender
                              last edited by

                              @Dashrender said in Best way to maintain some remote control but not absolute?:

                              Aww gotcha. ZT is definitely cool tech, but the inherent DNS issues make it a challenge. And unless you install ZT on all devices, you don't really have VPN to their network, only to those devices.

                              Just like any VPN.

                              1 Reply Last reply Reply Quote 0
                              • DashrenderD
                                Dashrender
                                last edited by

                                Having a VPN from my workstation to a web server does not grant me access to the whole network like a traditional VPN does.

                                scottalanmillerS 1 Reply Last reply Reply Quote 0
                                • scottalanmillerS
                                  scottalanmiller @Dashrender
                                  last edited by

                                  @Dashrender said in Best way to maintain some remote control but not absolute?:

                                  Having a VPN from my workstation to a web server does not grant me access to the whole network like a traditional VPN does.

                                  What do you mean "traditional" VPN? A traditional VPN gives you access to what you set it to, point to point, point to multipoint, multipoint to multipoint. A traditional VPN does both. If you put PPTP, L2TP, SSL, OpenVPN or IPSec from your workstation to the web server, you do not get full network access, yet those are all as traditional as VPNs get. In fact, you use HTTPS every day, which is an SSL VPN that doens't give any extra access.

                                  DashrenderD 1 Reply Last reply Reply Quote 0
                                  • DashrenderD
                                    Dashrender @scottalanmiller
                                    last edited by

                                    @scottalanmiller said in Best way to maintain some remote control but not absolute?:

                                    @Dashrender said in Best way to maintain some remote control but not absolute?:

                                    Having a VPN from my workstation to a web server does not grant me access to the whole network like a traditional VPN does.

                                    What do you mean "traditional" VPN? A traditional VPN gives you access to what you set it to, point to point, point to multipoint, multipoint to multipoint. A traditional VPN does both. If you put PPTP, L2TP, SSL, OpenVPN or IPSec from your workstation to the web server, you do not get full network access, yet those are all as traditional as VPNs get. In fact, you use HTTPS every day, which is an SSL VPN that doens't give any extra access.

                                    Sure, but I know almost no one that VPNs into a single resource like that. Now I know that you and NTG are using a ton of Jump boxes to do this type of thing, but most SMBs (is is mainly an SMB forum, right?) do point to point or user to point on network full type access. This is what I mean by traditional VPN.

                                    scottalanmillerS 3 Replies Last reply Reply Quote 0
                                    • scottalanmillerS
                                      scottalanmiller @Dashrender
                                      last edited by

                                      @Dashrender said in Best way to maintain some remote control but not absolute?:

                                      Sure, but I know almost no one that VPNs into a single resource like that.

                                      But that doesn't mean that it's not traditional (that's how it was done the most long ago) and it's still how 99.99% of VPNs are used (HTTPS, SSH are both VPNs that are almost always point to point and make up essentially all VPN traffic).

                                      1 Reply Last reply Reply Quote 0
                                      • scottalanmillerS
                                        scottalanmiller @Dashrender
                                        last edited by

                                        @Dashrender said in Best way to maintain some remote control but not absolute?:

                                        Now I know that you and NTG are using a ton of Jump boxes to do this type of thing,

                                        Jump boxes are not VPNs, though.

                                        1 Reply Last reply Reply Quote 0
                                        • scottalanmillerS
                                          scottalanmiller @Dashrender
                                          last edited by

                                          @Dashrender said in Best way to maintain some remote control but not absolute?:

                                          but most SMBs (is is mainly an SMB forum, right?) do point to point or user to point on network full type access. This is what I mean by traditional VPN.

                                          I would not call that "traditional" VPN. VPNs were point to point from the beginning. Even most all VPNs that you see as point to multipoint are not, they are point to point with the one end point providing a gateway to make it look like the VPN itself is point to multipoint. It's rarely the VPN mechanism doing that.

                                          If you think of VPNs in this way, it will cause confusion as it encourages mentally encumbering VPNs with definitions and limitations that do not exist for them.

                                          1 Reply Last reply Reply Quote 0
                                          • DashrenderD
                                            Dashrender
                                            last edited by

                                            Do you have a better name for that then?

                                            Oh and I do agree that VPN itself is always a Point to Point, but most implementations I've seen (again only SMB) are point to multipoint type installs (home user VPNing into office to access any/all network resources) or site to site, again all devices on one side can access all on the other.

                                            scottalanmillerS 2 Replies Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 5 / 6
                                            • First post
                                              Last post