Help! I cannot get a server to work on my one game!

On Garry's Mod, and Counter Strike: Source, i cannot make servers. I also am not very good with routers. Can someone please help me?

Hi,
First of all you have to assign a static ip address on computer on which you have to host games, like
ip: 192.168.1.10
subnet mask:255.255.255.0
Default gateway:192.168.1.1
Then need to forward ports used by the mentioned games on your routers firewall, to this static ip address.
Ports used by Counter Strike:
1200 set as UDP. 
27000 - 27015 set as UDP.
27020 - 27050 set as TCP.
Ports used by Garry's Mod:
27015 UDP
27015 TCP
27020 UDP

Similar Messages

  • Cannot get OSX Server to work properly

    I've followed various tutorials online in a bid to set up a home server.
    I thought I'd got everything right until I tried to login to a 'new user account' via the 'other selection' on the login screen of my mac mini.
    I don't know where I've gone wrong. Has anyone had this problem?
    Users can screen share the server or remotely connect to folders but they can't log into the mac mini server or via other devices

    I'm not sure what it is you're trying to do. Can you explain what Server services you're running and what you're trying to do with them?
    For example, I could describe how to access FTP and Wiki services, but that wouldn't help if you aren't running those services.
    I had to revise my initial Server install to properly configure my LAN. The best advice received was from MrHoffman, and that was to get DNS service properly configured on the LAN.
    I had been pointing to DNS servers outside my LAN. The proper way was to first choose a subnet (MrHoffman advised against using the ubiquitous 192.168.x.x and use 172.16.xx or 10.x.x.x instead), then configure forward and reverse lookups manually. (I had to delete those initially configured by Server and reconfigure my own.)
    This link should help: Hoffman Labs. The description for DNS configuration is for an earlier version of Server, but it works with Mountain Lion Server as well.
    Essentially, each client should be configured to point to your Server's LAN IP for DNS service. The Server should be configured to point to itself for DNS service, specifically 127.0.0.1 instead of its LAN IP address. Make sure you run the tests to make sure DNS is configure and working properly.
    If that doesn't help, you'll have to provide more detail on what it is you're trying to do.

  • Help please--cannot get summary button to work???!!!!

    Hi all,
    I am trying to get a summary of results on a survey, and I did have a portion of it working, but needed to add more code to complete it.
    When I hit the display summary button--nothing happens. There is a problem with my logic, but no logic errors come up. I must have created an infinite loop.
    Your help is much appreciated!!!!!
    Here is the code
    rivate void summaryJButtonActionPerformed( ActionEvent event )
           //declare variables
           double perAgree = 0.00;
           double perDisagree = 0.00;
           double perNuetral = 0.00;
           //calculate percent response for each category
           perAgree =  ((double)numAgree/total) * 100;
           perDisagree = ((double)numDisagree/total ) * 100;
           perNuetral =  ((double)numNuetral/total) * 100;
           //clear old results
                  summaryJButton.setText("");
           //add header to output area
           resultsJTextArea.append( "RESPONSE\tFREQUENCY\tPERCENT\tHISTOGRAM");
           //display results
           resultsJTextArea.append("\n" + "Agree" + "\t" + numAgree + "\t" + perAgree + "%"  );
           resultsJTextArea.append("\n" + "Disagree" + "\t" + numDisagree + "\t" + perDisagree + "%"  );
           resultsJTextArea.append("\n" + "No Opinion" + "\t" + numNuetral + "\t" + perNuetral + "%"  );
           do
                if (numAgree < total)
                     resultsJTextArea.append("\t" + "\t" + "\t" + "*");
                if (numDisagree < total)
                     resultsJTextArea.append("\t" + "\t" + "\t" + "*" );
                if (numNuetral < total)
                   resultsJTextArea.append("\t" + "\t" + "\t" + "*");
          } while (numAgree + numDisagree + numNuetral <= total);
       } // end method summaryJButtonActionPerformed
    /code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi and thanks for your help!
    I did invoke the method with a handler. Maybe I should have given you the entire code that I have in the first place.
    The first part of the code, and the other method seems to be working, so I was focusing on where the problem is.
    By the way- tried the system.out.printli, but since nothing happens when I click the summary button, I cannot even get any values to print in the command prompt.
    Here is the entire app:
    // Application summarized results of a survey
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.DecimalFormat;
    public class Survey extends JFrame
       // JLabel and JTextField read response
       private JLabel responseJLabel;
       private JTextField responseJTextField;
       // JButton initiates display of results
       private JButton summaryJButton;
       // JTextArea for survey results
       private JTextArea resultsJTextArea;
       // JButton resets to start again
       private JButton resetJButton;
       // DECLARE COUNTERS FOR VALID RESPONSES
       private int numAgree = 0;
       private int numDisagree = 0;
       private int numNuetral = 0;
       private int total = 0;
       // no-argument constructor
       public Survey()
          createUserInterface();
       // create and position GUI components; register event handlers
       private void createUserInterface()
          // get content pane for attaching GUI components
          Container contentPane = getContentPane();
          // enable explicit positioning of GUI components
          contentPane.setLayout( null );
          // set up responseJLabel
          responseJLabel = new JLabel();
          responseJLabel.setBounds( 116, 8, 70, 23 );
          responseJLabel.setText( "Response:" );
          contentPane.add( responseJLabel );
          // set up responseJTextField
          responseJTextField = new JTextField();
          responseJTextField.setBounds( 215, 8, 70, 23 );
          contentPane.add( responseJTextField );
          // ADD THE ACTION LISTENER TO THIS FIELD
          responseJTextField.addActionListener(
                    new ActionListener() // anonymous inner class
                        // event handler called when user clicks responseJButton
                        public void actionPerformed ( ActionEvent event )
                           responseJTextFieldActionPerformed( event );
                    } // end anonymous inner class
                 ); // end call to addActionListener
          // set up summaryJButton
          summaryJButton = new JButton();
          summaryJButton.setBounds( 116, 40, 170, 26 );
          summaryJButton.setText( "Display Summary" );
          summaryJButton.setEnabled(false);
          contentPane.add( summaryJButton );
          summaryJButton.addActionListener(
                    new ActionListener() // anonymous inner class
                        // event handler called when user clicks summaryJButton
                        public void actionPerformed ( ActionEvent event )
                           summaryJButtonActionPerformed( event );
                    } // end anonymous inner class
                 ); // end call to addActionListener
          // set up resultsJTextArea
          resultsJTextArea = new JTextArea();
          resultsJTextArea.setBounds( 16, 78, 400, 100 );
          resultsJTextArea.setEditable(false);
          contentPane.add( resultsJTextArea );
          // set up resetJButton
          resetJButton = new JButton();
          resetJButton.setBounds( 175, 200, 70, 23 );
          resetJButton.setText( "reset" );
          contentPane.add( resetJButton );
          // ADD THE ACTION LISTENER TO THIS BUTTON
          resetJButton.addActionListener(
                    new ActionListener() // anonymous inner class
                        // event handler called when user clicks resetJButton
                        public void actionPerformed ( ActionEvent event )
                           resetJButtonActionPerformed( event );
                    } // end anonymous inner class
                 ); // end call to addActionListener
          // set properties of application's window
          setTitle( "Survey Summary" ); // set title bar text
          setSize( 450, 275 );         // set window size
          setVisible( true );          // display window
       } // end method createUserInterface
       // method reads user input and accumulates totals
       private void responseJTextFieldActionPerformed( ActionEvent event )
            String input;             //used to store user's input
            boolean valid;
            int response;
              //test for no input
            if (responseJTextField.getText().equals(""))
                              JOptionPane.showMessageDialog( null,
                            "Please enter a response to the survey ", "Message",
                             JOptionPane.INFORMATION_MESSAGE);
                                 return;
              //read user input and convert to number
            input = ( responseJTextField.getText() );
            response = Integer.parseInt (input);
            // display error when response is not valid
                      if (response == 1 || response == 2 || response == 3)
                        valid = true;
                        total++;
                        summaryJButton.setEnabled (true);
                        responseJTextField.setText("");
                   else
                        //display error message
                        JOptionPane.showMessageDialog( null,
                      "Please enter a valid response ", "Message",
                       JOptionPane.INFORMATION_MESSAGE);
                       return;
                 //add totals for each category
                 if (response == 1)
                        numAgree++;
                   if (response == 2)
                        numDisagree++;
                   if (response == 3)
                        numNuetral++;
       } // end method responseJTextFieldActionPerformed
       // method displays survey summary
       private void summaryJButtonActionPerformed( ActionEvent event )
           //declare variables
           double perAgree = 0.00;
           double perDisagree = 0.00;
           double perNuetral = 0.00;
           //calculate percent response for each category
           perAgree =  ((double)numAgree/total) * 100;
           perDisagree = ((double)numDisagree/total ) * 100;
           perNuetral =  ((double)numNuetral/total) * 100;
           //clear old results
                  summaryJButton.setText("");
           //add header to output area
           resultsJTextArea.append( "RESPONSE\tFREQUENCY\tPERCENT\tHISTOGRAM");
           //display results
           resultsJTextArea.append("\n" + "Agree" + "\t" + numAgree + "\t" + perAgree + "%"  );
           resultsJTextArea.append("\n" + "Disagree" + "\t" + numDisagree + "\t" + perDisagree + "%"  );
           resultsJTextArea.append("\n" + "No Opinion" + "\t" + numNuetral + "\t" + perNuetral + "%"  );
           do
                if (numAgree < total)
                     resultsJTextArea.append("\t" + "\t" + "\t" + "*");
                if (numDisagree < total)
                     resultsJTextArea.append("\t" + "\t" + "\t" + "*" );
                if (numNuetral < total)
                   resultsJTextArea.append("\t" + "\t" + "\t" + "*");
          } while (numAgree + numDisagree + numNuetral <= total);
       } // end method summaryJButtonActionPerformed
       // method resets and clears to enable re-start
       private void resetJButtonActionPerformed( ActionEvent event )
            numAgree = 0;
            numDisagree = 0;
            numNuetral = 0;
            total = 0;
           responseJTextField.setText( "" );
          resultsJTextArea.setText( "" );
          summaryJButton.setEnabled(false);
       } // end method resetJButtonActionPerformed
       // main method
       public static void main( String[] args )
          Survey application = new Survey();
          application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
       } // end method main
    } // end class Survey

  • Need Help!  Cannot get SourceControl3.1  to work correctly.

    We are using RH8.  We have a project that needs updating to be current with newest software release.  There is a project manager in the home office and a technical writer working remotely in another state.  Our IT staff followed all the steps listed on setting up the SourceControl and this is what is occurring:
    I've tried it both as file system and as full embedded database solution. For files based solution I did create a history path. This is what I was working on Friday.  I had to set up another test machine here with RoboHelp in order to test it.  Same problem.  I can check out from either machine and checkin in. However the changes never get propagated to the other instance, even if you do a Get All. 
    Not sure if this is related, but the open project from Source Control does not work from within Robo Help 8 either. When I try to open a project that way, it just sits there on the open file dialog box.  From what the tutorial showed, it should start downloading the files and then you select the project file to open.
    Here's a sample screen shot. 
    I setup a brand new test database and project
    This one is using embedded database, not stored as files.
    Files are set to single checkout
    I modified on one machine
    Checked in ALL files
    Open project on other machine and get all files
    Changes not reflected
    Forced Get All
    Changes not reflected
    Here it is in the project directory... note the mod dates... the file is not updated.
    I would be so very grateful if someone could help figure out what is going on.  Thank you in advance.
    Stella

    Hello my friend. Try to go to the Volume options and click the advanced button on the play control.Check the enable digital I/0 box. If it worked let me know.Good luck.Message Edited by pangef on 07-8-2006 06:58 AM

  • EA6300 Cannot get web server to work

    Hi,
    I have a Linksys AE6300 router.
    I have a webserver set up with IIS to use port 780 for an HTTP site.
    It works when I use the internal IP http://192.168.1.150:780
    But, not when I use the external one. 
    This is a new router so, I never had this working on this particular router before. (but, my old router worked fine - was able to view website using external IP).
    I tried using both the Single and Port Range forwarding. (My old router used port range).
    Here is my Single Port forwarding setup...
    And my Basic Firewall settings
    I also re-booted the router. But, still cannot view website. (unavailable).
    What more should I be doing? Or what am I doing wrong?

    Thank you for the information.
    1 - I unchecked 'Filter Anonymous Internet Requests'
    2 - I did the following in port range forwarding.
    3 - I did a full powercycle 
    4 - I tried to access the external IP address using port 780 --  xxxx.xxxx.xxxx.xxxx:780
    Still got 'Webpage is not available'
    Error code: ERR_CONNECTION_ABORTED
    I went to the site http://www.whatsmyip.org/port-scanner/server/
    And noticed that port 80 is closed. (as apposed to 'Timeout (Blocked)'
    Port 780 is open.
    after trying access the webpage (using port 780) ... this is all that was in my linksys log : 
    Incoming log
    Source IP address | Destination port number
    Outgoing log
    LAN IP address | Destination URL or IP address | Service or port number
    192.168.1.108         66.161.xx.xx                                     www
    192.168.1.108        173.255.xx.xx                                    https
    192.168.1.108        66.161.xx.xx                                      www
    192.168.1.108        54.249.xx.xx                                      https
    192.168.1.108        216.219.xx.xx                                    https
    192.168.1.108        67.217.xx.xx                                      https
    192.168.1.108        216.115.xx.xx                                    https
    Security log
    LAN IP address | MAC address | Timestamp |                       Authentication result
    192.168.1.108     74:2F:68:79:.... 2013-09-30T22:39:19Z    Successful
    192.168.1.108     74:2F:68:79:.... 2013-09-30T22:38:42Z    Successful
    DHCP client log
    LAN IP address | MAC address | Timestamp | Message type
    The external IP address I have is not listed at all anywhere.
    Any advice would be appreciated.
    NOTE: My isp is Road Runner (Through Time Warner). 
    Thank you again for your attention.

  • Cannot get Search Server to work

    I am installing plumtree corporate portal. Everything seems to work except for the Search server. Any ideas?

    Probably will need more information about your ability to search. But...
    1) You will need to ensure the Plumtree Search Service is running2) Items are not indexed until the Search update 1 job runs, this means you will have to STart the job Server. The Search Agent should run immediately upon starting the job server.

  • Help! Cannot get Twitter Widget to Work!

    Hello,
    I am running Adobe Captivate 6 on a Mac. i have MAMP installed and followed the Twitter Widget installation guide here:
    http://help.adobe.com/en_US/captivate/cp/using/WSedb8e841cbc0b796-1c6e 5ece129f9bd28c5-8000.html
    When I preview my project in captivate or in web browser the widget does not show, neither does it when I publish the project to my local "test" moodle.
    The widget "icon" appears in the edit window.
    I think utilizing this tool in an elearning environment is an awesome concept and have been wracking my brain to figure it out.
    Any help would be greatly appreciated.
    Thanks,
    Josh

        Having issues with making and receiving calls can cause a lot of frustration Jamesgirl. I'm sorry your network extender isnt working properly but no worries because we are here to help. How long have you had issues with this accessory? Whats your zipcode and phone types? I recommend power cycling the Network extender. Keep us posted.
    KinquanaH_VZW
    Follow us on Twitter @vzwsupport

  • Please help, I cannot get play menu to work after using dynamic link.

    Ok. So I sent a video from premiere pro to encore using dynamic link. Then I created a menu in encore and dragged video to play button I created for the dvd. However, when I burn the dvd, the menu is not a part of the DVD. I do not know why this happens when I use a dynamic linked video. It does not happen when I use other videos. Please help. Thanks Matt

    You need to set the menu to be first play.
    If you create a timeline before you add a menu, the timeline becomes first play. If you set the end action of the timeline to the menu, it will eventually get there, but that does not appear to be what you want.

  • HT4527 Help I cannot get home sharing on to my I pad

    Help I cannot get home sharing to work on my I pad purchased yesterday

    On your computer's iTunes you've turned on home sharing via File > Home Sharing, and in the Sharing tab in Edit > Preferences you have the 'share library' tickbox ticked (I use a Mac, but I assume that it's similar for PCs) :
    On my iPad I'm logged into the same account via Settings > Videos > Home Sharing, both my computer and iPad are connected to the same network (and iTunes on my computer is open), and at the top of the Videos app I get an extra tab :
    You are not seeing the Shared tab in Videos ?

  • I cannot get my FaceTime to work since last two updates n my phone

    please help, i cannot get my facetime to work anymore, to contact my son

    If the problem started recently and if your phone is up to date, the problem may be with your son's phone not being up to date. More info: http://support.apple.com/kb/TS5419

  • I cannot get airport extreme to work. Can you help me?

    I have a G5 Power PC. I recently purchased a macbook and an Airport Extreme. I cannot get the airport to work. Can somebody help me please??
    G5 Power PC and macbook   Mac OS X (10.3.9)   new OS X on Macbook

    I plug the ethernet from the airport to the back of the modem (a Webstar unit) from my cable provider. Then I plug the other cable from the back of the airport into my G5. Then plug in the power cord. I get lots of flashing lights - "thinkin & blinkin", but then I get a message that it cannot locate the server. Even rebooted. I've been waiting for the IT guy to call/email me back me back but no response yet. I'm guessing I may just need a new location, but I'm not wired to think IT-like (I'm a very right brained graphic designer), I I don't want to screw anything up.
    Do I need to just go through a new internet setup?
    G5 Power PC and macbook   Mac OS X (10.3.9)   new OS X on Macbook

  • I have installed Mountain Lion 10.8.2 but still cannot get email from my work exchange account. I'd appreciate any help.  Thank you.

    I have installed Mountain Lion 10.8.2 but still cannot get email from my work exchange account. I'd appreciate any help.  Thank you.

    You can go to the Apple online store and purcahse a copy of Mountain Lion.  This will give you a redemption code, which you can use to download Mountain Lion from the App Store.  Unfortuantely, I'm not aware of any other way to legally purchase it.  I have never seen Apple release Muontain Lion on DVD.
    In terms of Apple Service, they just need the serial number of the machine to check the purcahse date.  It is usually correct, to within a few weeks.  A quick Google search should give you the correct number to dial.
    I hope this helps.

  • I have installed Mountain Lion 10.8.1 but still cannot get email from my work exchange account. I'd appreciate any help.  Thank you.

    I have installed Mountain Lion 10.8.1 but still cannot get email from my work exchange account. I'd appreciate any help.  Thank you.

    I would delete the account and try to re-enter it. Also, you have to let your firm's IT department know that you want to sync work email on your personal devices before they actually work.

  • I just updated my iphone to IOS 7 and cannot get my imessage to work, it keeps saying "waiting for activation" nothing i have read online has helped me try to fix the problem. why is it doing this and how can i fix it?

    I just updated my iphone to IOS 7 and cannot get my imessage to work, it keeps saying "waiting for activation" nothing i have read online has helped me try to fix the problem. why is it doing this and how can i fix it?

    Here's a good troubleshooting article about imessage "waiting for activation".
    http://support.apple.com/kb/TS4268

  • TS1574 I cannot get my sound to work! I have tried everything. Help?! :(

    I cannot get my sound to work. I have checked the system prefemces and nothing shows up, and nothing is editible.  I have rebooted and restarted it one million times, in safe mode too. When ever I try to adjust the volume a crossed out cirlce appears. I have no idea what people say about a red light, but I've checked and I cannot see one. I don't know what to do. Help? Thanks so much in advance.

    Have you tried a PRAM reset?
    http://support.apple.com/kb/ht1379
    Do the earphones work?
    Ciao.

Maybe you are looking for