Sponsored Content
Full Discussion: packet loss problem
Special Forums IP Networking packet loss problem Post 302277592 by photon on Friday 16th of January 2009 07:21:22 PM
Old 01-16-2009
Before they made the change to AUTO duplex, I made the change to FULL on
my side and it drooped the connection Smilie and went to redundant connection,
which was also showing as HALF duplex on their side, my side set to AUTO for
the redundant interface.

So if they were indeed at FULL DUPLEX it would NOT have dropped the
connection and should have been FULL to FULL, but that is not the case.

When I changed back to AUTO it said HALF duplex again on their side. Only
when they changed to AUTO did my side show them as FULL duplex.

Why did my switch say HALF for data center when my switch was set to
AUTO duplex and data center side was set to FULL?Smilie

Why would connection drop if supposedly both sides where set to FULL?Smilie

This is all very frustrating, the data center is seeing problems on their end
but not disclosing that information to me and suggesting it is my problem.Smilie
 

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Detecting data loss during FTP

Hi, How we can detect that there has been a data loss during FTP, throught Shell scripting? I have gone through FTP return codes, but, none indicate that there has been any data loss. Can we use FTP return code 226 as an indication that during file transfer there has been no data loss? If,... (4 Replies)
Discussion started by: sameerbo
4 Replies

2. UNIX for Advanced & Expert Users

Response time under packet loss

I am experiencing a problem where under a dial condition I am experiencing packet loss, which is failrly normal, but the response to the packet loss is taking bewteen 6 and 10 seconds. Could someone please advise what the industry standard is on the response time under a packet loss senario. (1 Reply)
Discussion started by: shane
1 Replies

3. Ubuntu

packet inconsistency problem

Hello everyone, I was trying to install db2 on Ubuntu, but got messed up with manual installation and Synaptic. At the moment, I find myself with a filesystem where DB2 is NOT installed ( I removed it with a sudo rm :o ) and with Synaptic still flagging db2exc as installed. The problem is that... (1 Reply)
Discussion started by: clalfa
1 Replies

4. IP Networking

Problem Receiving the first OSPF packet

I trying to send and receive OSPF packets. I am using RAW Sockets(socket(AF_INET, SOCK_RAW, IPPROTO_OSPF)) to do this. I am successfully able to send an OSPF Hello packet however I am not able to receive a OSPF packet if I have not sent an OSPF packet earlier on the RAW SOCKET. Scenario: ... (3 Replies)
Discussion started by: cosmic_egg
3 Replies

5. UNIX for Dummies Questions & Answers

Problem when I try to install a wireshark packet

Hi Gurus of UNIX, I has a problem when I try to install a packet in my virtual box. (I install solaris in it) Any want can help whith it: The problem is the following # pkgadd -d wireshark-1.2.10-sol10-x86-local The following packages are available: 1 SMCwires wireshark ... (5 Replies)
Discussion started by: andresguillen
5 Replies

6. Solaris

Packet loss on ce interface.

Hi, I am using the ce interface on my Solaris 9 server and there is significant packet loss when transmitting large packets. Does anyone have a fix for this? ----10.1.0.0 PING Statistics---- 51 packets transmitted, 42 packets received, 17% packet loss round-trip (ms) min/avg/max =... (12 Replies)
Discussion started by: sparcman
12 Replies

7. AIX

Packet loss coming with big packet size ping

(5 Replies)
Discussion started by: Vishal_dba
5 Replies
DATEFMT_GET_DATETYPE(3) 						 1						   DATEFMT_GET_DATETYPE(3)

IntlDateFormatter::getDateType - Get the datetype used for the IntlDateFormatter

	Object oriented style

SYNOPSIS
public int IntlDateFormatter::getDateType (void ) DESCRIPTION
Procedural style int datefmt_get_datetype (IntlDateFormatter $fmt) Returns date type used by the formatter. PARAMETERS
o $fmt - The formatter resource. RETURN VALUES
The current date type value of the formatter. EXAMPLES
Example #1 datefmt_get_datetype(3) example <?php $fmt = datefmt_create( 'en_US', IntlDateFormatter::FULL, IntlDateFormatter::FULL, 'America/Los_Angeles', IntlDateFormatter::GREGORIAN ); echo 'datetype of the formatter is : ' . datefmt_get_datetype($fmt); echo 'First Formatted output with datetype is ' . datefmt_format($fmt, 0); $fmt = datefmt_create( 'en_US', IntlDateFormatter::SHORT, IntlDateFormatter::FULL, 'America/Los_Angeles', IntlDateFormatter::GREGORIAN ); echo 'Now datetype of the formatter is : ' . datefmt_get_datetype($fmt); echo 'Second Formatted output with datetype is ' . datefmt_format($fmt, 0); ?> Example #2 OO example <?php $fmt = new IntlDateFormatter( 'en_US', IntlDateFormatter::FULL, IntlDateFormatter::FULL, 'America/Los_Angeles', IntlDateFormatter::GREGORIAN ); echo 'datetype of the formatter is : ' . $fmt->getDateType(); echo 'First Formatted output is ' . $fmt->format(0); $fmt = new IntlDateFormatter( 'en_US', IntlDateFormatter::SHORT, IntlDateFormatter::FULL, 'America/Los_Angeles', IntlDateFormatter::GREGORIAN ); echo 'Now datetype of the formatter is : ' . $fmt->getDateType(); echo 'Second Formatted output is ' . $fmt->format(0); ?> The above example will output: datetype of the formatter is : 0 First Formatted output is Wednesday, December 31, 1969 4:00:00 PM PT Now datetype of the formatter is : 2 Second Formatted output is 12/31/69 4:00:00 PM PT SEE ALSO
datefmt_get_timetype(3), datefmt_create(3). PHP Documentation Group DATEFMT_GET_DATETYPE(3)
All times are GMT -4. The time now is 03:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy