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

    Updated - Connecting to 1 Site With Separate Logins/Several IPs

    Scheduled Pinned Locked Moved IT Discussion
    rdprdp sessions
    73 Posts 12 Posters 5.4k Views
    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.
    • 1
      1337
      last edited by 1337

      I don't see what the problem here is. Just order a vpn account somewhere, nordvpn for instance, and let the users use those. Then they will all have different IP addresses and it's not going to be their own. I think most vpn account supports more than one device.

      Or if you want to do this from your LAN, you'll just order the vpn account and set up 4 openvpn links in your firewall and set up some rules on which ones to route through based on the LAN IP or whatever.

      1 Reply Last reply Reply Quote 0
      • dafyreD
        dafyre
        last edited by

        Why the need for 4 separate logins per person?

        One Username & Password for each of the "Brands" ?

        Are the Brand items Web Apps, or desktop applications, or what?

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

          @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

          @scottalanmiller said in Connecting to 1 Site With Separate Logins/Several IPs:

          Okay so let's see if I understand...

          Website: bobscatemporium.com

          Need: 25 employees and 80 contracts all need to be able to easily visit bobscatemporium.com but they need to do so with several different sets of credentials each to appear as different users? And not need to log out in between using each one, so that they can carry on real time conversations with themselves in different "voices" on the catemporium forums?

          But the ONLY thing that they need is web access, no other protocols?

          Maybe just remote browsers would make more sense, and use Linux. In theory you could get this to just one server instead of four, and no RDS costs, and only pass the browser windows back to people.

          How do I provide only the browsers? Also, it may be that the browser would have to be Firefox or Chrome. I would have to check that. Fortunately, it isn't IE.

          We do this with tools like NX on Linux all the time. Don't share out an entire desktop, only the app that you need. X Windows does this natively. That it is only Firefox or Chrome doesn't really affect anything, as you'd expect to only use one anyway.

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

            @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

            @scottalanmiller OK. I thought that is what porn mode was. The problem with that, is it doesn't change the public IP address, and that is really the whole point of this.

            Oh, that's REALLY weird. But okay, do you need four IPs, or four PER USER? If it is only four, then it is still pretty simple, do the same thing that you were going to do with the RDS servers, have one IP each.

            wrx7mW 1 Reply Last reply Reply Quote 0
            • JaredBuschJ
              JaredBusch
              last edited by

              about 10 seconds on google gave me this.....

              1. Setup 4 proxy servers to route traffic via the needed IP addresses.
              2. Launch chrome in porn mode specifying the proxy and user folder.
              # Proxy 1
              %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy01.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data
              # Proxy 2
              %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy02.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy02\User Data
              # Proxy 3
              %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy03.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy03\User Data
              # Proxy 4
              %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy04.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy04\User Data
              
              
              wrx7mW M 3 Replies Last reply Reply Quote 1
              • DashrenderD
                Dashrender @wrx7m
                last edited by

                @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                @Dashrender I wish. This is a production scenario.

                Other than the above stated requirements - can you tell us the goal?

                wrx7mW 1 Reply Last reply Reply Quote 0
                • wrx7mW
                  wrx7m @scottalanmiller
                  last edited by

                  @scottalanmiller said in Connecting to 1 Site With Separate Logins/Several IPs:

                  @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                  @scottalanmiller OK. I thought that is what porn mode was. The problem with that, is it doesn't change the public IP address, and that is really the whole point of this.

                  Oh, that's REALLY weird. But okay, do you need four IPs, or four PER USER? If it is only four, then it is still pretty simple, do the same thing that you were going to do with the RDS servers, have one IP each.

                  Not per user, just need to not have the same IPs for brand accounts to the site.

                  1 Reply Last reply Reply Quote 0
                  • wrx7mW
                    wrx7m @JaredBusch
                    last edited by

                    @JaredBusch said in Connecting to 1 Site With Separate Logins/Several IPs:

                    about 10 seconds on google gave me this.....

                    1. Setup 4 proxy servers to route traffic via the needed IP addresses.
                    2. Launch chrome in porn mode specifying the proxy and user folder.
                    # Proxy 1
                    %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy01.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data
                    # Proxy 2
                    %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy02.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy02\User Data
                    # Proxy 3
                    %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy03.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy03\User Data
                    # Proxy 4
                    %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy04.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy04\User Data
                    
                    

                    Can this be run simultaneously by a single system/user?

                    JaredBuschJ 1 Reply Last reply Reply Quote 0
                    • JaredBuschJ
                      JaredBusch @wrx7m
                      last edited by

                      @wrx7m .........

                      wrx7mW 1 Reply Last reply Reply Quote 0
                      • wrx7mW
                        wrx7m @JaredBusch
                        last edited by

                        @JaredBusch said in Connecting to 1 Site With Separate Logins/Several IPs:

                        @wrx7m .........

                        lol ok

                        1 Reply Last reply Reply Quote 0
                        • wrx7mW
                          wrx7m @Dashrender
                          last edited by

                          @Dashrender said in Connecting to 1 Site With Separate Logins/Several IPs:

                          @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                          @Dashrender I wish. This is a production scenario.

                          Other than the above stated requirements - can you tell us the goal?

                          The goal is to not have the website know that the users that are logging in are the exact same across each of the brands.

                          dbeatoD 1 Reply Last reply Reply Quote 0
                          • dbeatoD
                            dbeato @wrx7m
                            last edited by

                            @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                            @Dashrender said in Connecting to 1 Site With Separate Logins/Several IPs:

                            @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                            @Dashrender I wish. This is a production scenario.

                            Other than the above stated requirements - can you tell us the goal?

                            The goal is to not have the website know that the users that are logging in are the exact same across each of the brands.

                            so 4 users will be connecting to the site using a shared login and they should not know from where they are logging in?

                            wrx7mW 1 Reply Last reply Reply Quote 0
                            • wrx7mW
                              wrx7m @dbeato
                              last edited by

                              @dbeato - No, each has their own logins. So User1@brand1.com, User1@brand2.com, etc. and all login to the same site.

                              1 Reply Last reply Reply Quote 0
                              • wrx7mW
                                wrx7m @JaredBusch
                                last edited by

                                @JaredBusch

                                @JaredBusch said in Connecting to 1 Site With Separate Logins/Several IPs:

                                about 10 seconds on google gave me this.....

                                1. Setup 4 proxy servers to route traffic via the needed IP addresses.
                                2. Launch chrome in porn mode specifying the proxy and user folder.
                                # Proxy 1
                                %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy01.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data
                                # Proxy 2
                                %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy02.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy02\User Data
                                # Proxy 3
                                %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy03.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy03\User Data
                                # Proxy 4
                                %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy04.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy04\User Data
                                
                                

                                This might work, but I would have to set up the proxies, externally, for contractors.

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

                                  @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                                  @JaredBusch

                                  @JaredBusch said in Connecting to 1 Site With Separate Logins/Several IPs:

                                  about 10 seconds on google gave me this.....

                                  1. Setup 4 proxy servers to route traffic via the needed IP addresses.
                                  2. Launch chrome in porn mode specifying the proxy and user folder.
                                  # Proxy 1
                                  %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy01.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data
                                  # Proxy 2
                                  %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy02.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy02\User Data
                                  # Proxy 3
                                  %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy03.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy03\User Data
                                  # Proxy 4
                                  %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy04.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy04\User Data
                                  
                                  

                                  This might work, but I would have to set up the proxies, externally, for contractors.

                                  use open proxies on the internet, unless you want to/need to manage them yourself.

                                  wrx7mW 1 Reply Last reply Reply Quote 0
                                  • wrx7mW
                                    wrx7m @Dashrender
                                    last edited by

                                    @Dashrender said in Connecting to 1 Site With Separate Logins/Several IPs:

                                    @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                                    @JaredBusch

                                    @JaredBusch said in Connecting to 1 Site With Separate Logins/Several IPs:

                                    about 10 seconds on google gave me this.....

                                    1. Setup 4 proxy servers to route traffic via the needed IP addresses.
                                    2. Launch chrome in porn mode specifying the proxy and user folder.
                                    # Proxy 1
                                    %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy01.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data
                                    # Proxy 2
                                    %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy02.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy02\User Data
                                    # Proxy 3
                                    %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy03.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy03\User Data
                                    # Proxy 4
                                    %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy04.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy04\User Data
                                    
                                    

                                    This might work, but I would have to set up the proxies, externally, for contractors.

                                    use open proxies on the internet, unless you want to/need to manage them yourself.

                                    Something like this? https://www.proxynova.com/proxy-server-list/

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

                                      @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                                      @Dashrender said in Connecting to 1 Site With Separate Logins/Several IPs:

                                      @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                                      @JaredBusch

                                      @JaredBusch said in Connecting to 1 Site With Separate Logins/Several IPs:

                                      about 10 seconds on google gave me this.....

                                      1. Setup 4 proxy servers to route traffic via the needed IP addresses.
                                      2. Launch chrome in porn mode specifying the proxy and user folder.
                                      # Proxy 1
                                      %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy01.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data
                                      # Proxy 2
                                      %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy02.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy02\User Data
                                      # Proxy 3
                                      %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy03.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy03\User Data
                                      # Proxy 4
                                      %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy04.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy04\User Data
                                      
                                      

                                      This might work, but I would have to set up the proxies, externally, for contractors.

                                      use open proxies on the internet, unless you want to/need to manage them yourself.

                                      Something like this? https://www.proxynova.com/proxy-server-list/

                                      Bingo.

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

                                        @Dashrender said in Connecting to 1 Site With Separate Logins/Several IPs:

                                        @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                                        @Dashrender said in Connecting to 1 Site With Separate Logins/Several IPs:

                                        @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                                        @JaredBusch

                                        @JaredBusch said in Connecting to 1 Site With Separate Logins/Several IPs:

                                        about 10 seconds on google gave me this.....

                                        1. Setup 4 proxy servers to route traffic via the needed IP addresses.
                                        2. Launch chrome in porn mode specifying the proxy and user folder.
                                        # Proxy 1
                                        %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy01.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data
                                        # Proxy 2
                                        %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy02.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy02\User Data
                                        # Proxy 3
                                        %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy03.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy03\User Data
                                        # Proxy 4
                                        %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy04.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy04\User Data
                                        
                                        

                                        This might work, but I would have to set up the proxies, externally, for contractors.

                                        use open proxies on the internet, unless you want to/need to manage them yourself.

                                        Something like this? https://www.proxynova.com/proxy-server-list/

                                        Bingo.

                                        Open proxies? WTF...is this a practical joke?

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

                                          @Pete-S said in Connecting to 1 Site With Separate Logins/Several IPs:

                                          @Dashrender said in Connecting to 1 Site With Separate Logins/Several IPs:

                                          @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                                          @Dashrender said in Connecting to 1 Site With Separate Logins/Several IPs:

                                          @wrx7m said in Connecting to 1 Site With Separate Logins/Several IPs:

                                          @JaredBusch

                                          @JaredBusch said in Connecting to 1 Site With Separate Logins/Several IPs:

                                          about 10 seconds on google gave me this.....

                                          1. Setup 4 proxy servers to route traffic via the needed IP addresses.
                                          2. Launch chrome in porn mode specifying the proxy and user folder.
                                          # Proxy 1
                                          %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy01.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data
                                          # Proxy 2
                                          %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy02.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy02\User Data
                                          # Proxy 3
                                          %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy03.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy03\User Data
                                          # Proxy 4
                                          %pathtochrome%\chrome.exe --incognito --proxy-server="http://proxy04.domain.local:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy04\User Data
                                          
                                          

                                          This might work, but I would have to set up the proxies, externally, for contractors.

                                          use open proxies on the internet, unless you want to/need to manage them yourself.

                                          Something like this? https://www.proxynova.com/proxy-server-list/

                                          Bingo.

                                          Open proxies? WTF...is this a practical joke?

                                          As long as it's not breaking TLS - who cares.

                                          1 Reply Last reply Reply Quote 0
                                          • wrx7mW
                                            wrx7m
                                            last edited by

                                            Aside from security, another concern is that that list seems to be pretty dynamic with which servers are available. Managing 4 shortcuts for everyone with hardcoded links would be a nightmare to update.

                                            1 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 2 / 4
                                            • First post
                                              Last post