Εμφάνιση 1-7 από 7
  1. #1
    Εγγραφή
    20-08-2006
    Ηλικία
    46
    Μηνύματα
    215
    Downloads
    3
    Uploads
    0
    Τύπος
    ADSL2+ Forthnet Full
    Ταχύτητα
    10240/1024
    ISP
    Forthnet
    DSLAM
    Forthnet - ΡΕΘΥΜΝΟ
    Router
    sagem f@st 1500
    Ρωταω αν υπαρχει τροπος ,μεσα απο τα settings του router ισως ή αν ξερει κανεις καπιο τροπο να βελτιωσω το ping που εχω (το χρεαιαζομαι για τα on line games)
    Τωρα εχω με ping στο www.otenet.gr ειναι περιπου 400 και επειδη εχω μεν δηλωσει 2 φορες βλαβη δεν βλεπω να κανουν τιποτα (εχουν περασει 2 εβδομαδες και ολο λενε το ψαχνουμε)

  2. #2
    Εγγραφή
    09-01-2005
    Μηνύματα
    36
    Downloads
    4
    Uploads
    0
    Τύπος
    ADSL
    Ταχύτητα
    8192/1024
    ISP
    Cyta
    DSLAM
    ΟΤΕ - ΑΡΙΑΔΝΗΣ
    Join the club ..... απο οτι ξερω δεν γίνεται κάτι με το ping .
    Θα κοιμηθώ αρκετά όταν πεθάνω.
    MSI K8NE02FSR-AMD64 3200-1GB-POV6800GT256-320GBSATA-160GBSATA+80GB-DVD-RW3500NEC-DVD-19''DTKCRT

    MSI P35 PLATINUM-DUO6750-2GBKINGSTON-XFX8800GTS512-320GBSATA-200GBSATA-DVDRWOPTIO7200

  3. #3
    Εγγραφή
    09-09-2006
    Μηνύματα
    42
    Downloads
    1
    Uploads
    0
    Τύπος
    ADSL2+ Forthnet Full
    Ταχύτητα
    7664/1020
    ISP
    Forthnet
    DSLAM
    Forthnet - ΦΙΛΙΠΠΟΥ
    Router
    WAG200G
    SNR / Attn
    8(dB) / 30(dB)
    και εγ'ω τ ο ίδιο πρόβλημα έχω...μεγάλα καρναβάλια στον οτε/οτενετ όλο μου λένε να κανο restart το rooter :S

  4. #4
    Εγγραφή
    18-06-2007
    Περιοχή
    Ιωάννινα
    Μηνύματα
    1.262
    Downloads
    16
    Uploads
    2
    Τύπος
    VDSL2
    Ταχύτητα
    50000/5000
    ISP
    COSMOTE
    Router
    Hwawei HA35
    SNR / Attn
    (dB) / 6.8(dB)
    Path Level
    Interleaved
    Εξαρταται απο το dslam και το ποσο ειναι φορτωμενο δυστυχως! Δεν μπορεις να κανεις κατι απο το να περιμενεις

  5. #5
    Εγγραφή
    15-09-2002
    Ηλικία
    39
    Μηνύματα
    916
    Downloads
    5
    Uploads
    0
    Τύπος
    VDSL2
    Ταχύτητα
    50/5
    ISP
    ΟΤΕ Conn-x
    http://files.filefront.com/FasterPin.../fileinfo.html

    Το κάνεις install, διαλέγεις την κάρτα δικτύου σου (που μάλλον θα είναι ήδη επιλεγμένη) διαλέγεις Yes στις επιλογές και το frequency στο 1 (όπως είναι αρχικά δηλαδή) κάνεις apply και μετά restart.

    Στο World of Warcraft που παίζω εγώ έκανε διαφορά.

  6. #6
    Εγγραφή
    29-08-2003
    Περιοχή
    Καισαριανή
    Ηλικία
    43
    Μηνύματα
    27
    Downloads
    7
    Uploads
    0
    Τύπος
    FTTH
    Ταχύτητα
    102400/10240
    ISP
    Cosmote
    DSLAM
    ΟΤΕ - ΒΥΡΩΝΑΣ
    Παραθέτω το κείμενο που έκανα post μέσα στην Guild μου.

    Nagle's document, Congestion Control in IP/TCP Internetworks (RFC896) describes what he called the 'small packet problem', where an application repeatedly emits data in small chunks, frequently only 1 byte in size. Since TCP packets have a 40 byte header (20 bytes for TCP, 20 bytes for IPv4), this results in a 41 byte packet for 1 byte of useful information, a huge overhead. This situation often occurs in Telnet sessions, where most keypresses generate a single byte of data which is transmitted immediately. Worse, over slow links, many such packets can be in transit at the same time, potentially leading to congestion collapse.

    Nagle's algorithm works by coalescing a number of small outgoing messages, and sending them all at once. Specifically, as long as there is a sent packet for which the sender has received no acknowledgment, the sender should keep buffering its output until it has a full packet's worth of output, so that output can be sent all at once.

    ==========================================================
    Algorithm
    ------------------------------------------------------------------------------------------------------
    if there is new data to send
    if the window size >= MSS and available data is >= MSS
    send complete MSS segment now
    else
    if there is unconfirmed data still in the pipe
    enqueue data in the buffer until an acknowledge is received
    else
    send data immediately
    ------------------------------------------------------------------------------------------------------
    where MSS = Maximum segment size

    This algorithm interacts badly with TCP delayed acknowledgments, a feature introduced into TCP at roughly the same time in the early 1980s, but by a different group. With both algorithms enabled, applications which do two successive writes to a TCP connection, followed by a read, experience a constant delay of up to 500 milliseconds, the "ACK delay". For this reason, TCP implementations usually provide applications with an interface to disable the Nagle algorithm. This is typically called the TCP_NODELAY option.

    Those steps are needed in order to disable the Naggle algorithm from your TCP/IP stack without downloading any "addon/program",if you are in general a suspecious persona that is affected by the maximum security syndrome like i am Wink

    First of all,have a look here (XP,2003) and here (Vista) if your operating system should have any patch applied before proceeding with the beneath.

    First of all ;

    Start ->Run -> type "CMD" .... In the black screen, Type "ipconfig" write down your ip address in a paper from the list. Close that window...

    Now Tricky part;

    Start -> Run-> Type " regedit" and enter...

    In the following window click as i say;

    HKEY_LOCAL_MACHINE
    SYSTEM
    CurrentControlSet
    Services
    Tcpip
    Parameters
    Interfaces

    Now you will see 3 or 4 clickable weird name folders. Those names are like

    {77D3EB9E-0B4D-4C52-AA31-2E28DC446D94}
    {90FBA3B2-721C-450D-A3CD-9F98D118E34A}
    etc...

    Click each of them and search for your ip address in one of that folders.

    When you see your ip address right click anywhere on that window and select NEW --> DWORD ...It created a file named "new dword"...Rename that file to "TcpAckFrequency" (without quotes) after renaming the file double click on it and type "1" there.

    Now close that window and restart your PC...Login Wow and you will see the difference...

  7. #7
    Εγγραφή
    24-11-2006
    Περιοχή
    Kozani
    Μηνύματα
    128
    Downloads
    18
    Uploads
    0
    Τύπος
    ADSL2+ OTE
    Ταχύτητα
    24574/1023
    ISP
    Conn-x OTE/Otenet
    Router
    Thomson Speedtouch 585v6
    SNR / Attn
    10.5(dB) / 8(dB)
    Παράθεση Αρχικό μήνυμα από Belerefontis Εμφάνιση μηνυμάτων
    Παραθέτω το κείμενο που έκανα post μέσα στην Guild μου.

    Nagle's document, Congestion Control in IP/TCP Internetworks (RFC896) describes what he called the 'small packet problem', where an application repeatedly emits data in small chunks, frequently only 1 byte in size. Since TCP packets have a 40 byte header (20 bytes for TCP, 20 bytes for IPv4), this results in a 41 byte packet for 1 byte of useful information, a huge overhead. This situation often occurs in Telnet sessions, where most keypresses generate a single byte of data which is transmitted immediately. Worse, over slow links, many such packets can be in transit at the same time, potentially leading to congestion collapse.

    Nagle's algorithm works by coalescing a number of small outgoing messages, and sending them all at once. Specifically, as long as there is a sent packet for which the sender has received no acknowledgment, the sender should keep buffering its output until it has a full packet's worth of output, so that output can be sent all at once.

    ==========================================================
    Algorithm
    ------------------------------------------------------------------------------------------------------
    if there is new data to send
    if the window size >= MSS and available data is >= MSS
    send complete MSS segment now
    else
    if there is unconfirmed data still in the pipe
    enqueue data in the buffer until an acknowledge is received
    else
    send data immediately
    ------------------------------------------------------------------------------------------------------
    where MSS = Maximum segment size

    This algorithm interacts badly with TCP delayed acknowledgments, a feature introduced into TCP at roughly the same time in the early 1980s, but by a different group. With both algorithms enabled, applications which do two successive writes to a TCP connection, followed by a read, experience a constant delay of up to 500 milliseconds, the "ACK delay". For this reason, TCP implementations usually provide applications with an interface to disable the Nagle algorithm. This is typically called the TCP_NODELAY option.

    Those steps are needed in order to disable the Naggle algorithm from your TCP/IP stack without downloading any "addon/program",if you are in general a suspecious persona that is affected by the maximum security syndrome like i am Wink

    First of all,have a look here (XP,2003) and here (Vista) if your operating system should have any patch applied before proceeding with the beneath.

    First of all ;

    Start ->Run -> type "CMD" .... In the black screen, Type "ipconfig" write down your ip address in a paper from the list. Close that window...

    Now Tricky part;

    Start -> Run-> Type " regedit" and enter...

    In the following window click as i say;

    HKEY_LOCAL_MACHINE
    SYSTEM
    CurrentControlSet
    Services
    Tcpip
    Parameters
    Interfaces

    Now you will see 3 or 4 clickable weird name folders. Those names are like

    {77D3EB9E-0B4D-4C52-AA31-2E28DC446D94}
    {90FBA3B2-721C-450D-A3CD-9F98D118E34A}
    etc...

    Click each of them and search for your ip address in one of that folders.

    When you see your ip address right click anywhere on that window and select NEW --> DWORD ...It created a file named "new dword"...Rename that file to "TcpAckFrequency" (without quotes) after renaming the file double click on it and type "1" there.

    Now close that window and restart your PC...Login Wow and you will see the difference...
    νομιζω οτι παρελειψες το 2ο βημα :
    2 - TCPNoDelay
    This one is pretty simple

    Type "regedit" in windows "run.." dialog to bring up registry menu

    Then find:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSMQ\Parameters

    Right-click in the right hand pane and add a new DWORD value, name it TCPNoDelay, then right click the entry and click Modify and assign a value of 1. (το default των Windows ειναι 0)

Παρόμοια Θέματα

  1. Μηνύματα: 37
    Τελευταίο Μήνυμα: 24-05-08, 17:47
  2. Πως μπορώ να βελτιώσω ασύρματο σήμα;
    Από Crystal-Flavor στο φόρουμ Wireless Networking
    Μηνύματα: 18
    Τελευταίο Μήνυμα: 20-11-07, 21:59
  3. Δεν Μπορω Να Κανω Ping!!!
    Από Sacred στο φόρουμ Wind
    Μηνύματα: 8
    Τελευταίο Μήνυμα: 02-02-07, 16:21
  4. Δεν μπορω να κανω ping
    Από dou13 στο φόρουμ Zyxel ADSL modems και routers
    Μηνύματα: 10
    Τελευταίο Μήνυμα: 24-08-06, 22:37

Tags για αυτό το Θέμα

Bookmarks

Bookmarks

Δικαιώματα - Επιλογές

  • Δεν μπορείτε να δημοσιεύσετε νέα θέματα
  • Δεν μπορείτε να δημοσιεύσετε νέα μηνύματα
  • Δεν μπορείτε να αναρτήσετε συνημμένα
  • Δεν μπορείτε να επεξεργαστείτε τα μηνύματα σας
  •  
  • Τα BB code είναι σε λειτουργία
  • Τα Smilies είναι σε λειτουργία
  • Το [IMG] είναι σε λειτουργία
  • Το [VIDEO] είναι σε λειτουργία
  • Το HTML είναι εκτός λειτουργίας