<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>This is me - This is my advanture - This is my life &#124; Elmansyah</title>
	<atom:link href="http://mhs.blog.ui.ac.id/elmansyah11/feed/" rel="self" type="application/rss+xml" />
	<link>http://mhs.blog.ui.ac.id/elmansyah11</link>
	<description>Just another Blog Mahasiswa UI site</description>
	<lastBuildDate>Sun, 18 Mar 2012 08:46:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>SCTP (Stream Control Transmission Protocol)</title>
		<link>http://mhs.blog.ui.ac.id/elmansyah11/2012/03/18/sctp-stream-control-transmission-protocol/</link>
		<comments>http://mhs.blog.ui.ac.id/elmansyah11/2012/03/18/sctp-stream-control-transmission-protocol/#comments</comments>
		<pubDate>Sun, 18 Mar 2012 08:46:20 +0000</pubDate>
		<dc:creator>elmansyah11</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://mhs.blog.ui.ac.id/elmansyah11/?p=21</guid>
		<description><![CDATA[Introduction The Stream Control Transmission Protocol (SCTP) is a new IP transportprotocol, existing at an equivalent level with UDP (User DatagramProtocol) and TCP (Transmission Control Protocol), which provide transport layer functions to many Internet applications.  SCTP has been approved by the IETF as a Proposed Standard [1].  The error check algorithm has since been modified [...]]]></description>
				<content:encoded><![CDATA[<p><strong>Introduction</strong></p>

<p>The Stream Control Transmission Protocol (SCTP) is a new IP transportprotocol, existing at an equivalent level with UDP (User DatagramProtocol) and TCP (Transmission Control Protocol), which provide transport layer functions to many Internet applications.  SCTP has been approved by the IETF as a Proposed Standard [1].  The error check algorithm has since been modified [2].  Future changes and updates will be reflected in the IETF RFC index.</p>

<p>Like TCP, SCTP provides a reliable transport service, ensuring that data is transported across the network without error and in sequence. Like TCP, SCTP is a session-oriented mechanism, meaning that a relationship is created between the endpoints of an SCTP association prior to data being transmitted, and this relationship is maintained until all data transmission has been successfully completed.</p>

<p>Unlike TCP, SCTP provides a number of functions that are critical for telephony signaling transport, and at the same time can potentially benefit other applications needing transport with additional performance and reliability.  The original framework for the SCTP definition is described in [3].<strong> </strong></p>

<p><strong> Basic SCTP Features</strong></p>

<p>SCTP is a unicast protocol, and supports data exchange between exactly 2 endpoints, although these may be represented by multiple IP addresses.</p>

<p>SCTP provides reliable transmission, detecting when data is discarded, reordered, duplicated or corrupted, and retransmitting damaged data as necessary.  SCTP transmission is full duplex.</p>

<p>SCTP is message oriented and supports framing of individual message boundaries.  In comparison, TCP is byte oriented and does not preserve any implicit structure within a transmitted byte stream without enhancement.</p>

<p>SCTP is rate adaptive similar to TCP, and will scale back data transfer to the prevailing load conditions in the network.  It is designed to behave cooperatively with TCP sessions attempting to use the same bandwidth.</p>

<p><strong></strong></p>

<p><strong>SCTP Multi-Streaming Feature</strong></p>

<p>The name Stream Control Transmission Protocol is derived from the multi-streaming function provided by SCTP.  This feature allows data to be partitioned into multiple streams that have the property of independently sequenced delivery, so that message loss in any one stream will only initially affect delivery within that stream, and not delivery in other streams.</p>

<p>In contrast, TCP assumes a single stream of data and ensures that delivery of that stream takes place with byte sequence preservation. While this is desirable for delivery of a file or record, it causes additional delay when message loss or sequence error occurs within the network.  When this happens, TCP must delay delivery of data until the correct sequencing is restored, either by receipt of an out-of-sequence message, or by retransmission of a lost message.</p>

<p>For a number of applications, the characteristic of strict sequence preservation is not truly necessary.  In telephony signaling, it is only necessary to maintain sequencing of messages that affect the same resource (e.g., the same call, or the same channel).  Other messages are only loosely correlated and can be delivered without having to maintain overall sequence integrity.</p>

<p>Another example of possible use of multi-streaming is the delivery of multimedia documents, such as a web page, when done over a single session.  Since multimedia documents consist of objects of different sizes and types, multi-streaming allows transport of these components to be partially ordered rather than strictly ordered, and may result in improved user perception of transport.</p>

<p>At the same time, transport is done within a single SCTP association, so that all streams are subjected to a common flow and congestion control mechanism, reducing the overhead required at the transport level.</p>

<p>SCTP accomplishes multi-streaming by creating independence between data transmission and data delivery.  In particular, each payload DATA &#8220;chunk&#8221; in the protocol uses two sets of sequence numbers, a Transmission Sequence Number that governs the transmission of messages and the detection of message loss, and the Stream ID/Stream Sequence Number pair, which is used to determine the sequence of delivery of received data.</p>

<p>This independence of mechanisms allows the receiver to determine immediately when a gap in the transmission sequence occurs (e.g., due to message loss), and also whether or not messages received following the gap are within an affected stream.  If a message is received within the affected stream, there will be a corresponding gap in the Stream Sequence Number, while messages from other streams will not show a gap.  The receiver can therefore continue to deliver messages to the unaffected streams while buffering messages in the affected stream until retransmission occurs.</p>

<p><strong>
</strong></p>

<p><strong>SCTP Multi-Homing Feature</strong></p>

<p>Another core feature of SCTP is multi-homing, or the ability for a single SCTP endpoint to support multiple IP addresses.  The benefit of multi-homing is potentially greater survivability of the session in the presence of network failures.  In a conventional single-homed session, the failure of a local LAN access can isolate the end system, while failures within the core network can cause temporary unavailability of transport until the IP routing protocols can reconverge around the point of failure.  Using multi-homed SCTP, redundant LANs can be used to reinforce the local access, while various options are possible in the core network to reduce the dependency of failures for different addresses.  Use of addresses with different prefixes can force routing to go through different carriers, for example, route-pinning techniques or even redundant core networks can also be used if there is control over the network architecture and protocols.</p>

<p>In its current form, SCTP does not do load sharing, that is, multi- homing is used for redundancy purposes only.  A single address is chosen as the &#8220;primary&#8221; address and is used as the destination for all DATA chunks for normal transmission.  Retransmitted DATA chunks</p>

<p>use the alternate address(es) to improve the probability of reaching the remote endpoint, while continued failure to send to the primary address ultimately results in the decision to transmit all DATA chunks to the alternate until heartbeats can reestablish the reachability of the primary.</p>

<p>To support multi-homing, SCTP endpoints exchange lists of addresses during initiation of the association.  Each endpoint must be able to receive messages from any of the addresses associated with the remote endpoint; in practice, certain operating systems may utilize available source addresses in round robin fashion, in which case receipt of messages from different source addresses will be the normal case.  A single port number is used across the entire address list at an endpoint for a specific session.</p>

<p>In order to reduce the potential for security issues, it is required that some response messages be sent specifically to the source address in the message that caused the response.  For example, when the server receives an INIT chunk from a client to initiate an SCTP association, the server always sends the response INIT ACK chunk to the source address that was in the IP header of the INIT.</p>

<p><strong></strong></p>

<p><strong>Features of the SCTP Initiation Procedure</strong></p>

<p>The SCTP Initiation Procedure relies on a 4-message sequence, where DATA can be included on the 3rd and 4th messages of the sequence, as these messages are sent when the association has already been validated.  A &#8220;cookie&#8221; mechanism has been incorporated into the sequence to guard against some types of denial of service attacks.</p>

<p><strong></strong></p>

<p><strong>Cookie Mechanism</strong></p>

<p>The &#8220;cookie&#8221; mechanism guards specifically against a blind attacker generating INIT chunks to try to overload the resources of an SCTP server by causing it to use up memory and resources handling new INIT requests.  Rather than allocating memory for a Transmission Control Block (TCB), the server instead creates a Cookie parameter with the TCB information, together with a valid lifetime and a signature for authentication, and sends this back in the INIT ACK.  Since the INIT ACK always goes back to the source address of the INIT, the blind attacker will not get the Cookie.  A valid SCTP client will get the Cookie and return it in the COOKIE ECHO chunk, where the SCTP server can validate the Cookie and use it to rebuild the TCB.  Since the server creates the Cookie, only it needs to know the format and secret key, this is not exchanged with the client.</p>

<p>Otherwise, the SCTP Initiation Procedure follows many TCP conventions, so that the endpoints exchange receiver windows, initial sequence numbers, etc.  In addition to this, the endpoints may exchange address lists as discussed above, and also mutually confirm the number of streams to be opened on each side.</p>

<p>&nbsp;</p>

<p><strong>INIT Collision Resolution</strong></p>

<p>Multi-homing adds to the potential that messages will be received out of sequence or with different address pairs.  This is a particular concern during initiation of the association, where without procedures for resolving the collision of messages, you may easily end up with multiple parallel associations between the same endpoints.  To avoid this, SCTP incorporates a number of procedures to resolve parallel initiation attempts into a single association.</p>

<p>&nbsp;</p>

<p><strong>SCTP DATA Exchange Features</strong></p>

<p>DATA chunk exchange in SCTP follows TCP&#8217;s Selective ACK procedure. Receipt of DATA chunks is acknowledged by sending SACK chunks, which indicate not only the cumulative Transmission Sequence Number (TSN) range received, but also any non-cumulative TSNs, implying gaps in the received TSN sequence.  Following TCP procedures, SACKs are sent using the &#8220;delayed ack&#8221; method, normally one SACK per every other received packet, but with an upper limit on the delay between SACKs and an increase to once per received packet when there are gaps detected.</p>

<p>Flow and Congestion Control follow TCP algorithms.  The advertised receive window indicates buffer occupancy at the receiver, while a per-path congestion window is maintained to manage the packets in flight.  Slow start, Congestion avoidance, Fast recovery and Fast retransmit are incorporated into the procedures as described in RFC 2581, with the one change being that the endpoints must manage the conversion between bytes sent and received and TSNs sent and received, since TSN is per chunk rather than per byte.</p>

<p>The application can specify a lifetime for data to be transmitted, so that if the lifetime has expired and the data has not yet been transmitted, it can be discarded (e.g., time-sensitive signaling messages).  If the data has been transmitted, it must continue to be delivered to avoid creating a hole in the TSN sequence.</p>

<p>&nbsp;</p>

<p><strong>SCTP Shutdown Features</strong></p>

<p>SCTP Shutdown uses a 3-message procedure to allow graceful shutdown, where each endpoint has confirmation of the DATA chunks received by the remote endpoint prior to completion of the shutdown.  An Abort procedure is also provided for error cases when an immediate shutdown must take place.</p>

<p>Note that SCTP does not support the function of a &#8220;half-open&#8221; connection as can occur in TCP, when one side indicates that it has no more data to send, but the other side can continue to send data indefinitely.  SCTP assumes that once the shutdown procedure begins, both sides will stop sending new data across the association, and only need to clear up acknowledgements of previously sent data.</p>

<p>&nbsp;</p>

<p><strong>SCTP Message Format</strong></p>

<p>The SCTP Message includes a common header plus one or more chunks, which can be control or data.  The common header has source and destination port numbers to allow multiplexing of different SCTP associations at the same address, a 32-bit verification tag that guards against insertion of an out-of-date or false message into the SCTP association, and a 32-bit checksum (this has been modified to use the CRC-32c polynomial [2]) for error detection.</p>

<p>Each chunk includes chunk type, flag field, length and value. Control chunks incorporate different flags and parameters depending on the chunk type.  DATA chunks in particular incorporate flags for control of segmentation and reassembly, and parameters for the TSN, Stream ID and Stream Sequence Number, and a Payload Protocol Identifier.</p>

<p>The Payload Protocol ID has been included for future flexibility.  It is envisioned that the functions of protocol identification and port number multiplexing will not be as closely linked in the future as they are in current usage.  Payload Protocol ID will allow the protocol being carried by SCTP to be identified independent of the port numbers being used.</p>

<p>The SCTP message format naturally allows support of bundling of multiple DATA and control chunks in a single message, to improve transport efficiency.  Use of bundling is controllable by the application, so that bundling of initial transmission can be prohibited.  Bundling will naturally occur on retransmission of DATA chunks, to further reduce any chance of congestion.</p>

<p>&nbsp;</p>

<p><strong>Error Handling</strong></p>

<ul>
    <li><strong>Retransmission</strong></li>
</ul>

<p>Retransmission of DATA chunks occurs from either (a) timeout of the retransmission timer; or (b) receipt of SACKs indicating the DATA chunk has not been received.  To reduce the potential for congestion, the rate of retransmission of DATA chunks is limited.  The retransmission timeout (RTO) is adjusted based on estimates of the round trip delay and backs off exponentially as message loss increases.</p>

<p>In an active association with fairly constant DATA transmission, SACKs are more likely to cause retransmission than the timeout.  To reduce the chance of an unnecessary retransmission, a 4 SACK rule is used, so that retransmission only occurs on receipt of the 4th SACK that indicates that the chunk is missing.  This is intended to avoid retransmits due to normal occurrences such as packets received out of sequence.</p>

<ul>
    <li> <strong>Path Failure</strong></li>
</ul>

<p>A count is maintained of the number of retransmissions to a particular destination address without successful acknowledgement. When this count exceeds a configured maximum, the address is declared inactive, notification is given to the application, and the SCTP begins to use an alternate address for the sending of DATA chunks.</p>

<p>Also, Heartbeat chunks are sent periodically to all idle destinations (i.e., alternate addresses), and a counter is maintained on the number of Heartbeats sent to an inactive destination without receipt of a corresponding Heartbeat Ack.  When this counter exceeds a configured maximum, that destination address is also declared inactive.</p>

<p>Heartbeats continue to be sent to inactive destination addresses until an Ack is received, at which point the address can be made active again.  The rate of sending Heartbeats is tied to the RTO estimation plus an additional delay parameter that allows Heartbeat traffic to be tailored according to the needs of the user application.</p>

<ul>
    <li> <strong>Endpoint Failure</strong></li>
</ul>

<p>A count is maintained across all destination addresses on the number of retransmits or Heartbeats sent to the remote endpoint without a successful Ack.  When this exceeds a configured maximum, the endpoint is declared unreachable, and the SCTP association is closed.</p>

<p>&nbsp;</p>

<p><strong>API </strong></p>

<p>The specification includes a model of the primitives exchanged between the application and the SCTP layer, intended as informational material rather than a formal API statement.  A socket-based API is being defined to simplify migration of TCP or UDP applications to the use of SCTP.</p>

<p>&nbsp;</p>

<p><strong>Security Considerations</strong></p>

<p>In addition to the verification tag and cookie mechanisms, SCTP specifies the use of IPSec if strong security and integrity protection is required.  The SCTP specification does not itself define any new security protocols or procedures.</p>

<p>Extensions to IPSec are under discussion to reduce the overhead required to support multi-homing.  Also, work is in progress on the use of Transport Layer Security (TLS) over SCTP [4].</p>

<p>&nbsp;</p>

<p><strong>Extensions</strong></p>

<p>The SCTP format allows new chunk types, flags and parameter fields to be defined as extensions to the protocol.  Any extensions must be based on standard agreements within the IETF, as no vendor-specific extensions are supported in the protocol.</p>

<p>Chunk Type values are organized into four ranges to allow extensions to be made with a pre-defined procedure for responding if a new Chunk Type is not recognized at the remote endpoint.  Responses include: whole packet discard; packet discard with reporting; ignoring the chunk; ignoring with reporting.  Similar pre-defined responses are specified for unrecognized Parameter Type values.</p>

<p>Chunk Parameter Type values are in principle independent ranges for each Chunk Type.  In practice, the values defined in the SCTP specification have been coordinated so that a particular parameter type will have the same Chunk Parameter Type value across all Chunk Types.  Further experience will determine if this alignment needs to be maintained or formalized.</p>

<p><strong>
</strong></p>

<p><strong>Informative References</strong></p>

<p>[1] Stewart, R., Xie, Q., Morneault, K., Sharp, C., Schwarzbauer, H., Taylor, T., Rytina, I., Kalla, M., Zhang, L. and V. Paxson, &#8220;Stream Control Transmission Protocol&#8221;, RFC 2960, October 2000.</p>

<p>[2] Stewart, Sharp, et. al., &#8220;SCTP Checksum Change&#8221;, Work in Progress.</p>

<p>[3] Ong, L., Rytina, I., Garcia, M., Schwarzbauer, H., Coene, L., Lin, H., Juhasz, I., Holdrege, M. and C. Sharp, &#8220;Framework Architecture for Signaling Transport&#8221;, RFC 2719, October 1999.</p>

<p>[4] Jungmeier, Rescorla and Tuexen, &#8220;TLS Over SCTP&#8221;, Work in Progress.</p>
]]></content:encoded>
			<wfw:commentRss>http://mhs.blog.ui.ac.id/elmansyah11/2012/03/18/sctp-stream-control-transmission-protocol/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Seccurity Issue of the Clouds Computing</title>
		<link>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/seccurity-issue-of-the-clouds-computing/</link>
		<comments>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/seccurity-issue-of-the-clouds-computing/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 16:25:26 +0000</pubDate>
		<dc:creator>elmansyah11</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://mhs.blog.ui.ac.id/elmansyah11/?p=14</guid>
		<description><![CDATA[Cloud computing is an evolutionary development of technology that combines computer technology (computing) and Internet-based development, which now each user can access the software applications that are installed on a computer server and can be accessed by users via the Internet. Users do not need to install the software on each local computer. Each user [...]]]></description>
				<content:encoded><![CDATA[<p><img style="float: left;" src="http://4.bp.blogspot.com/-yIEJFkdMh4A/T05SW02xnsI/AAAAAAAAAD8/qCqqIOmVqiQ/s320/cloud.JPG" alt="" width="320" height="246" />Cloud computing is an evolutionary development of technology that combines computer technology (computing) and Internet-based development, which now each user can access the software applications that are installed on a computer server and can be accessed by users via the Internet. Users do not need to install the software on each local computer. Each user can use the application without limits wherever and whenever needed. Responding on the development of cloud computing technology today, the concept of data security and privacy should be further improved so that the security, leakage and loss of user data on the other side can be avoided. So in this paper will discuss the security level used in cloud computing technology providers in terms of cloud computing. This paper will explore the status of the development of cloud computing security, analyze data privacy, security auditing, monitoring data, and standard procedures used in cloud computing. The purpose of this paper is to take a step better in terms of implementation and the security used in cloud computing.</p>

<p><strong>Security Risks of Cloud Computing</strong></p>

<p><span id="result_box" class="long_text" lang="en"><span class="hps">In 2008</span> <span class="hps">information technology</span> <span class="hps">research and</span> <span class="hps">consulting</span> <span class="hps">U.S.</span> <span class="hps">Gartner</span> <span class="hps">believes</span> <span class="hps">the</span> <span class="hps">risks</span> <span class="hps">of</span> <span class="hps">cloud</span> <span class="hps">computing</span><span>, especially</span> <span class="hps">from the</span> <span class="hps">corner</span> <span class="hps">vendor</span> <span class="hps">in terms</span> <span class="hps">of security</span> <span class="hps">capabilities</span><span>. Tujuh keamanan resiko dalam cloud computing menurut Gartner</span></span></p>

<ol>
    <li><span id="result_box" class="long_text" lang="en"><span>User Privilage Access</span></span></li>
    <li><span id="result_box" class="long_text" lang="en"><span>Regulation</span></span></li>
    <li><span id="result_box" class="long_text" lang="en"><span>Data Location</span></span></li>
    <li><span id="result_box" class="long_text" lang="en"><span>Data Separation</span></span></li>
    <li><span id="result_box" class="long_text" lang="en"><span>Recovery</span></span></li>
    <li><span id="result_box" class="long_text" lang="en"><span>Investigation<em></em></span></span></li>
    <li><span id="result_box" class="long_text" lang="en"><span>Long-term survival</span></span></li>
</ol>

<p>In 2009<em> CSA</em> (Cloud Security Alliance) guidelines issued in terms of safety, especially on a cloud computing perspective on the threat that an attack will occur on the system of the attacker / hacker. It is proposed that there are 7 fields in the biggest security issues, important, and very dangerous in a cloud computing system</p>

<ol>
    <li>Cloude Computing Abuse</li>
    <li>Security in the use of interface / hardware</li>
    <li>Malicious</li>
    <li>The issue of a shared technology</li>
    <li>Lost Data</li>
    <li>Account user hijacking</li>
    <li>Risk for unoun users</li>
</ol>

<p>To respond to the multiple data security in cloud computing, then the service provider (vendor) should be prioritized in terms of the privacy of each user&#8217;s security service cloud computing</p>

<ol>
    <li>Monitoring and auditing data</li>
    <li>Data Privacy</li>
    <li>Enscription management</li>
    <li>Data integritation</li>
</ol>

<p>The security of cloud computing is still in discussion as the security standard used in the implementation of cloud computing systems. Some organizations implement security standards on cloud computing, such as the Open Cloud Manifesto (OCM), National Institute of Standards and Technology (NIST), Cloud Security Alliance (CSA) and the Distributed Management Task Force (DMFT)</p>

<p><em>This papers writtent by : Elmansyah and Riantino in Computer Architecture, Department of Electrical Engineering, University of Indonesia.</em></p>

<p><em>Refference :</em></p>

<ol>
    <li><em>Xiang Tan<sup>a</sup>, Bo<strong> </strong>Ai<sup>b</sup>, “The Issues of Cloud computing Security in High-speed Railway, State Key Laboratory of Rail Traffic Control and Safety, Beijing Jiaotong University, Beijing, P.R.China, 2011</em></li>
    <li><em><a href="http://www.opencloudmanifesto.org/">http://www.opencloudmanifesto.org/</a></em></li>
    <li><em>Cloud Security Alliance, Security Guidance for Critical Areas of Focus in Cloud computing V2.1, 2009</em></li>
    <li><em><a href="http://www.dmtf.org/">http://www.dmtf.org/</a></em></li>
    <li><em><a href="http://www.computerweekly.com/Articles/2009/06/10/235429/A-history-of-cloud-computing.htm">http://www.computerweekly.com/Articles/2009/06/10/235429/A-history-of-cloud-computing.htm</a></em></li>
    <li><em><a href="http://www.techno-pulse.com/2010/04/infrastructure-as-service-iaas-cloud.html">http://www.techno-pulse.com/2010/04/infrastructure-as-service-iaas-cloud.html</a></em></li>
    <li><em><a href="http://www.altor.com/altor/opencms/index.html">http://www.altor.com/altor/opencms/index.html</a></em></li>
    <li><em>Wei J, Zhang X, Ammons G, Bala V, Ning P, “Managing security of virtual machine images in a cloud environment. In: Proc. Of the 2009 ACM Workshop on Cloud Computing Security. 2009</em></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/seccurity-issue-of-the-clouds-computing/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Internet2</title>
		<link>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/internet2/</link>
		<comments>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/internet2/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 14:31:39 +0000</pubDate>
		<dc:creator>elmansyah11</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://mhs.blog.ui.ac.id/elmansyah11/?p=12</guid>
		<description><![CDATA[Internet2 is a major step in the evolution of the current Internet, Internet2 was developed in 1996 by several universities in the U.S. by providing data access speed is very high (Network High Speed). Internet2 is expected by the presence of the performance of Internet services could be better. Today&#8217;s Internet technology is designed with [...]]]></description>
				<content:encoded><![CDATA[<p><img style="float: left;" src="http://2.bp.blogspot.com/-jGPU8kPYMcQ/T05X6CuU_uI/AAAAAAAAAEE/iMLrzKaRIu8/s1600/internet2_image.gif" alt="" width="266" height="258" />Internet2 is a major step in the evolution of the current Internet, Internet2 was developed in 1996 by several universities in the U.S. by providing data access speed is very high (Network High Speed). Internet2 is expected by the presence of the performance of Internet services could be better.</p>

<p>Today&#8217;s Internet technology is designed with no QOS (Quality of Service), so there is no guarantee of safety data on the internet, therefore it is developing Internet2 QOS support services to improve the performance of today&#8217;s Internet network. Internet today is using the concept of best-effort IP routing is irregular so that the transmitted data packets can pass through the routing path to be empty until the goal. The concept of IP routing on the internet today also do not support the existence of prior communication between sender and receiver (handshak) there is no guarantee that data packets will arrive safely at your destination.</p>

<p>By addressing some of the weaknesses and flaws in the concept of the Internet today, so the researchers continue to develop to make some improvements, namely the concept of its dirancangan Internet2.</p>

<p>Development of current technology is developing rapidly and has a lot of use of online applications such as video and audio conferencing that require extremely high internet service to send data packets on the internet can be saved to the destination without any delay, jitter, and packet loss. It is therefore necessary to support these services are very good QOS in the network connection on the internet.</p>

<p>The purpose in creating it Internet2 to provide access to data transmission is very high, intense, dynamic, fast, and cost effective. Internet2 networks uses some concepts such as the current phone system (ATM Switch) that is the relationship between sender and receiver before transmitting data to the Internet (handshaking). For example, if the sender wants to send data packets to the destination, the sender can call in advance to receive objective and asks whether to accept data to be transmitted, if the receiver busy condition, the receiver shall immediately send ack (action) back to the sender that receiver busy condition. And vice versa if the receiver can receive the package right away, then the receiver sends ack to the sender to immediately send data packets to be transmitted by the sender. By using the concept as it is expected that the service guarantee of safety data can be saved to a good purpose.</p>

<p>Internet2 is designed to perform several approaches, namely the best-effort technology with ATM Switch. The main objective of this approach to share network resources such that it can simultaneously achieve the benefits of circuit-switched network (performance guarantees) and the benefits of best-effort network to a maximum</p>

<p>Internet2 has some requirements that will apply are:</p>

<ol>
    <li>Supporting technological applications that require access to the internet as a very high</li>
    <li>Can implement packet forwarding equipment</li>
    <li>Administrable</li>
    <li>Provide a scalable service</li>
    <li>Ability to work with the host, operating system and middleware</li>
    <li>Short-term needs for QOS Tesbed.</li>
</ol>

<p>Some protocols that can support Internet2, namely:</p>

<ol>
    <li>IPv6 (Internet Protocol Version 6)</li>
    <li>MPLS (Multi Protocol Label of switching)</li>
    <li>GMPLS (Generalized Multi Protocol Label Switching)</li>
    <li>SIP (Session Initiation Protocol)</li>
</ol>

<p>IPv6 is an enhancement to replace IPv4 existence that is almost depleted his willingness to just thinking about a 23-bit network address. Meanwhile, pick the 128 bit IPv6 network address that is 2 * 96 more than the IPv4</p>

<p>MPLS is a technology delivering data packets of high-speed backbone network, the principle works combine some advantages of the communication system of circuit-switched and packet-switched technology that gave birth to a better than two. The working principle is to combine MPLS layer 2 switching speed with Traffic routing and scalability at layer 3, the way it works is by slipping between the header label layer 2 and layer 3 in the packet is forwarded. Label produced by the label-switching router which acts as a liaison with outside networks MPLS network. The label contains further information destination node where the packet should be sent. Then forwarded the package to the next node, the node is the package label will be released and given a new label containing the following purposes. Packets transmitted in a path which is called LSP (Label Switching Path)</p>

<p>GMPLS also known as Multiprotocol Switching Lamda is a technology that provides enhancements to Multiprotocol Label Switching (MPLS) to support network switching for time, wavelength, and as well as for packet switching. In particular, GMPLS network will provide support for optical communication networks (fotonic)</p>

<p>SIP is a signaling protocol developed by IETF and is widely used for communication sessions such as voice and video calls using the IP protocol. SIP is very good for data transmission is realtime as video and audio conferencing.</p>

<p>This will be described below some approaches that stiffened QOS on Internet2, namely:</p>

<ol>
    <li>Scope</li>
    <li>model Control</li>
    <li>Transmission guarantee</li>
</ol>

<p>Scope defines the boundaries of service QOS, such as a scope to access the application end-to-end, which means defining how much and what applications will be covered by QOS Facility.</p>

<p>QOS control model in describing the request of the limitations in network equipment, duration, and location. For example QOS requests can be done both in terms of end-to-end or central location (middleware) as a proxy for internet caching.</p>

<p>Collateral is marked with a granularity of transmission, the transmission parameters, and the corresponding guarantees about what the networks have to offer for each service.</p>

<p>&nbsp;</p>

<p><em>The papers writtent by : Elmansyah and Elvian Syafrurizal in Advanced Information Network,  Department of Electrical Engineering, University of Indonesia</em></p>

<p><em>Refference : </em></p>

<ol>
    <li><em><span style="text-decoration: underline;">Dimitrios Miras, “A Survey of Network QoS Needs of Advanced Internet Applications — Working Document —“, Internet2 QoS Working Group, Computer Science Department, University College London, 2002, pp. 1</span></em></li>
    <li><em><span style="text-decoration: underline;">January 2010 Internet2 Traffic Snapshot, Prepared for the Joint Techs Connector BOF On February 1st, 2010, pp. 3</span></em></li>
    <li><em><span style="text-decoration: underline;">Robert H. Zakon. &#8220;Hobbes&#8217; Internet Timeline 10.1&#8243;. Retrieved September 16, 2011</span></em></li>
    <li><em><span style="text-decoration: underline;">Teitelbaum Ben, Hanss Ted, “QoS Requirements for Internet2 (draft)”. QoS Home,  April 22, 1998</span></em></li>
    <li><em><span style="text-decoration: underline;">Nickols, K.; Blake, S.; Baker, F.; Black, D. “<a href="http://tools.ietf.org/html/rfc2474.html">Definition of the Differentiated Service Field (DS Field) in the IPv4 and IPv6 Headers</a>, <a title="Internet Engineering Task Force" href="http://en.wikipedia.org/wiki/Internet_Engineering_Task_Force">IETF</a>.” RFC 2474. December, 1998</span></em></li>
    <li><em><span style="text-decoration: underline;">RFC 2474</span></em></li>
    <li><em><span style="text-decoration: underline;">Li (Erran) Li, Milind M. Buddhikot, Chandra Chekuri, and Katherine Guo, “Routing Bandwidth Guaranteed Paths With Local Restoration in Label Switched Networks”, IEEE Journal on Selected Areas in Communications, VOL. 23, NO. 2, February 2005</span></em></li>
    <li><em><span style="text-decoration: underline;">RFC 3945</span></em></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/internet2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lakon Pada Suatu Ketika</title>
		<link>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/lakon-pada-suatu-ketika/</link>
		<comments>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/lakon-pada-suatu-ketika/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 14:27:19 +0000</pubDate>
		<dc:creator>elmansyah11</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://mhs.blog.ui.ac.id/elmansyah11/?p=11</guid>
		<description><![CDATA[100 % designed by Indonesia indigenous]]></description>
				<content:encoded><![CDATA[<p>100 % designed by Indonesia indigenous</p>

<iframe src="http://player.vimeo.com/video/33383100?title=0&amp;byline=0&amp;portrait=0" frameborder="0" width="398" height="318"></iframe>
]]></content:encoded>
			<wfw:commentRss>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/lakon-pada-suatu-ketika/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trick to secure your facebook account</title>
		<link>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/trick-untuk-mencegah-pembajakan-account-facebook/</link>
		<comments>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/trick-untuk-mencegah-pembajakan-account-facebook/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 14:21:05 +0000</pubDate>
		<dc:creator>elmansyah11</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://mhs.blog.ui.ac.id/elmansyah11/?p=9</guid>
		<description><![CDATA[One of the convenience offered by Facebook is accessible wherever you are. With all this connectivity, there are important responsibilities that must be maintained that the security of your personal account. To prevent piracy Facebook account, you&#8217;ll want to know the tricks used by hackers in stealing accounts. Here is a trick that is usually [...]]]></description>
				<content:encoded><![CDATA[<p><img style="float: left;" src="http://4.bp.blogspot.com/-0OKOs9JuYXk/TuT89SUAzKI/AAAAAAAAADo/i3WrtHk1sJw/s320/fb_spam-150x145.png" alt="" width="150" height="145" />One of the convenience offered by Facebook is accessible wherever you are. With all this connectivity, there are important responsibilities that must be maintained that the security of your personal account.</p>

<p>To prevent piracy Facebook account, you&#8217;ll want to know the tricks used by hackers in stealing accounts. Here is a trick that is usually used hackers to hijack accounts / get one&#8217;s Facebook password.</p>

<div>
<ul>
    <li><strong>Facebook Application and advertisement
</strong></li>
</ul>
</div>

<div>Be careful when already logged into Facebook. Do not carelessly clicking on ads or your own applications that are not familiar. Many Facebook users hit by virus from the ads on Facebook or stuck to their personal data by accident when using certain applications.</div>

<div></div>

<div>
<ul>
    <li><strong>Phising  in Facebook Login Pages
</strong></li>
</ul>
</div>

<div>Hackers generally always exploit popular topics. Spammers use a variety of ways and methods so that you get stuck and give your account. Facebook itself recently many spam attacks targeted by phishing techniques. When you click on a link found on Facebook, we will be brought to a page like Facebook login pages when the page is a page designed to steal passwords Facebook spammer.</div>

<div><iframe src="http://www.youtube.com/embed/9T8xaDoYNmg" frameborder="0" width="560" height="315"></iframe></div>

<div>
<div>One way to avoid such a trap is not arbitrary URL to click on the email. It is better to type in the URL you want to visit the site directly in a browser. Actually very easy to recognize a fake URL. If the URL is not Facebook.com written, then the URL is a fake.</div>
<div>
<ul>
    <li><strong>Another Website Intergration with Facebook
</strong></li>
</ul>
</div>
<div>With the increasing popularity of Facebook, a lot of blogs, websites, and even large companies are integrating their website with the Facebook and twitter. This is not a problem for the original link is used up. The problem arises when hackers interfering with fake Facebook share button. When we clicked the button is false, then the hacker will easily steal our passwords.</div>
<div>
<ul>
    <li><strong>Online Application in Third-Party
</strong></li>
</ul>
</div>
<div>Beware of third party applications that could potentially steal data. Facebook users are usually very easy to allow certain applications to access their Facebook account because it considers the application is trusted. But the thing is, from any application that we believe there may be ten or twenty fake applications that are designed to steal your Facebook login data. Therefore, before installing an application and your Facebook login input data, find out the credibility of the application through the review-review presented other users, or check whether the application has been officially registered.</div>
<div>
<ul>
    <li><strong>Login Facebook in Public Computer
</strong></li>
</ul>
</div>
<div>Avoid using a public computer login because your account was hijacked vulnerable. Public computers are often used as a &#8216;tool&#8217; to spy on the user. Moreover, many people are not aware of the existence of the &#8220;keep me logged in&#8221; contained on the Facebook login page. Often a person&#8217;s Facebook page is still in the position we want to login when accessing Facebook through a public computer.</div>
<div>
<ul>
    <li><strong>Ilegal in  Pop-up <strong>Chat</strong>
</strong></li>
</ul>
</div>
<div>Another trap that hackers use to allow users to login to their Facebook accounts is to use the chat pop-up windows. By imitating the pop-up chat up, chat pop-up windows will be acted invite you chat via Facebook chat facility. If we click on the chat window, then you will be escorted to a Facebook phishing page. Or it could be this is a porn site advertising or other product that we do not want. All these tactics are a lot of hackers and identity thieves use to obtain our personal data. Therefore, do login only on the official site Facebook, use a trusted third-party applications, and be careful when logging on public computers</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mhs.blog.ui.ac.id/elmansyah11/2012/02/29/trick-untuk-mencegah-pembajakan-account-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beberapa Trick Untuk Mengamankan Kartu Kredit Saat Berbelanja Online</title>
		<link>http://mhs.blog.ui.ac.id/elmansyah11/2011/10/05/halo-dunia/</link>
		<comments>http://mhs.blog.ui.ac.id/elmansyah11/2011/10/05/halo-dunia/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 07:03:32 +0000</pubDate>
		<dc:creator>elmansyah11</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://mhs.blog.ui.ac.id/elmansyah11/?p=1</guid>
		<description><![CDATA[Situs belanja online makin marak di dunia maya. Dengan kelebihan-kelebihan yang ditawarkannya, berbelanja melalui internet merupakan salah satu aktivitas online yang mengasyikkan. Tidak perlu jauh-jauh keluar rumah, Anda bisa mendapatkan barang yang Anda inginkan. Namun, jangan sampai terlena karena ternyata bahaya mengintai para shopper terkait penggunaan kartu kredit yang dipakai untuk pembayaran barang. Sekadar mengingatkan, [...]]]></description>
				<content:encoded><![CDATA[<div><img style="float: left;" src="http://2.bp.blogspot.com/-yQyjjide27Y/TuY-WkCHKBI/AAAAAAAAAD0/V2DVUDc5BiA/s320/images.jpg" alt="" width="225" height="225" />Situs belanja online makin marak di dunia maya. Dengan kelebihan-kelebihan yang ditawarkannya, berbelanja melalui internet merupakan salah satu aktivitas online yang mengasyikkan. Tidak perlu jauh-jauh keluar rumah, Anda bisa mendapatkan barang yang Anda inginkan.</div>

<div></div>

<div>Namun, jangan sampai terlena karena ternyata bahaya mengintai para shopper terkait penggunaan kartu kredit yang dipakai untuk pembayaran barang. Sekadar mengingatkan, beberapa waktu lalu pihak keamanan telah meringkus Albert Gonzales dan menjebloskannya ke dalam penjara selama 20 tahun. Ia terbukti melakukan pencurian dan menjual kembali sebanyak lebih dari 170 juta nomor kartu kredit. Tidak tertutup kemungkinan, pencuri nomor kartu kredit seperti Gonzales masih banyak berseliweran di dunia maya.</div>

<div></div>

<div>David Perry dari perusahaan keamanan internet Trend Micro membagi 4 tips bagi para pembelanja internet untuk membentengi diri dari penipuan kartu kredit dan pencurian identitas.</div>

<div>
<ul>
    <li><strong>Pastikan komputer tidak terinfeksi program berbahaya</strong></li>
</ul>
</div>

<div>Salah satu taktik yang sering dipakai penipu dunia maya ialah menginstal ‘keylogger’ secara diam-diam pada komputer Anda. Tujuannya adalah untuk merekam setiap keystroke pada komputer, termasuk menscan rekaman nomor kartu kredit yang Anda inputkan pada website. Solusinya, gunakan software anti virus agar terhindar dari malware.</div>

<div>
<ul>
    <li><strong>Jangan mengumbar nomor kartu kredit</strong></li>
</ul>
</div>

<div>Mengetikkan nomor kartu kredit secara manual di situs e-commerce adalah tindakan yang berbahaya. Lebih baik gunakan layanan pihak ketiga seperti PayPal atau Amazon yang akan menyimpan nomor Anda dan mencegah nomor tersebut disimpan oleh sejumlah retailer yang tidak semuanya bisa dipercaya.</div>

<div>
<ul>
    <li><strong>Gunakan software keamanan</strong></li>
</ul>
</div>

<div>Sekali lagi, aktifkan software anti virus dan pelindung malware pada komputer Anda. Sebuah studi menyebutkan, bahwa 2 dari 5 komputer tidak memiliki perlindungan sama sekali. Akan tetapi, jangan menginstal program anti virus dari perusahaan pesaing pada komputer yang sama, karena akan memperlambat sistem Anda.</div>

<div>
<ul>
    <li><strong>Hati-hati saat Mengunjungi Situs</strong></li>
</ul>
</div>

<div>Jangan mudah tergoda mengklik link situs yang berasal dari email yang tidak dikenal. Jika memungkinkan, akan lebih baik jika Anda membeli produk langsung ke toko/suppliernya. Atau jika Anda ragu-ragu dengan website yang Anda kunjungi, hubungi saja retailernya dan pesan melalui telepon</div>

<div></div>

<div><em>sumber : id-sirt</em></div>
]]></content:encoded>
			<wfw:commentRss>http://mhs.blog.ui.ac.id/elmansyah11/2011/10/05/halo-dunia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
