<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Backtrack%3A_Menyambungkan_modem_ZTE_AC2726i</id>
	<title>Backtrack: Menyambungkan modem ZTE AC2726i - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Backtrack%3A_Menyambungkan_modem_ZTE_AC2726i"/>
	<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Backtrack:_Menyambungkan_modem_ZTE_AC2726i&amp;action=history"/>
	<updated>2026-04-20T06:35:37Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://lms.onnocenter.or.id/wiki/index.php?title=Backtrack:_Menyambungkan_modem_ZTE_AC2726i&amp;diff=22103&amp;oldid=prev</id>
		<title>Onnowpurbo: New page: Sumber: http://ditatompel.crayoncreative.net/blog/how-to/connect-to-the-internet-using-smart-modem-zte-ac2726i-in-linux-backtrack/  Tested with : BT R1 and BT 4 Final. If you are using an ...</title>
		<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Backtrack:_Menyambungkan_modem_ZTE_AC2726i&amp;diff=22103&amp;oldid=prev"/>
		<updated>2010-09-21T07:21:55Z</updated>

		<summary type="html">&lt;p&gt;New page: Sumber: http://ditatompel.crayoncreative.net/blog/how-to/connect-to-the-internet-using-smart-modem-zte-ac2726i-in-linux-backtrack/  Tested with : BT R1 and BT 4 Final. If you are using an ...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Sumber: http://ditatompel.crayoncreative.net/blog/how-to/connect-to-the-internet-using-smart-modem-zte-ac2726i-in-linux-backtrack/&lt;br /&gt;
&lt;br /&gt;
Tested with : BT R1 and BT 4 Final. If you are using an older version of BackTrack, please let me know it’s work or not.&lt;br /&gt;
&lt;br /&gt;
Requirement:&lt;br /&gt;
* ZTE AC2726i / ZTE AC2726 (Dual Mode USB Modem);&lt;br /&gt;
* BackTrack 4 Final or BackTrack R1&lt;br /&gt;
&lt;br /&gt;
First, you must download usb_modeswitch here. If you’ve been able to connect to the Internet, simply type:&lt;br /&gt;
&lt;br /&gt;
 wget http://ditatompel.crayoncreative.net/v2/files/usb_modeswitch-1.0.2.tar.bz2&lt;br /&gt;
&lt;br /&gt;
After the download is complete, extract usb_modeswitch-1.0.2.tar.bz2 we’ve just downloaded&lt;br /&gt;
&lt;br /&gt;
 tar -xjf usb_modeswitch-1.0.2.tar.bz2&lt;br /&gt;
&lt;br /&gt;
Go to usb_modeswitch-1.0.2 folder and the install it as root:&lt;br /&gt;
&lt;br /&gt;
 cd usb_modeswitch-1.0.2; sudo make install&lt;br /&gt;
&lt;br /&gt;
And you should get the following output:&lt;br /&gt;
&lt;br /&gt;
 [sudo] password for ditatompel:&lt;br /&gt;
 mkdir -p /usr/sbin&lt;br /&gt;
 install ./usb_modeswitch /usr/sbin&lt;br /&gt;
 mkdir -p /etc&lt;br /&gt;
 install ./usb_modeswitch.conf /etc&lt;br /&gt;
&lt;br /&gt;
there are two files are installed : usb_modeswitch and usb_modeswitch.conf. edit usb_modeswitch.conf located in the /etc folder,  I am using pico command to edit this file&lt;br /&gt;
&lt;br /&gt;
 sudo pico /etc/usb_modeswitch.conf&lt;br /&gt;
&lt;br /&gt;
add this following configuration similar to the configuration of ZTE AC2710 (EVDO) by Wasim Baig&lt;br /&gt;
&lt;br /&gt;
 #########################################################&lt;br /&gt;
 ## ZTE AC2726i (EVDO)&lt;br /&gt;
 DefaultVendor= 0x19d2&lt;br /&gt;
 DefaultProduct= 0xfff5&lt;br /&gt;
 TargetVendor= 0x19d2&lt;br /&gt;
 TargetProduct= 0xfff1&lt;br /&gt;
 MessageContent= &amp;quot;5553424312345678c00000008000069f010000000000000000000000000000&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Next, open wvdial.conf file in /etc folder and edit the configuration file&lt;br /&gt;
* I recommend that you backup it first!&lt;br /&gt;
&lt;br /&gt;
 sudo pico /etc/wvdial.conf&lt;br /&gt;
&lt;br /&gt;
Use this following configuration:&lt;br /&gt;
&lt;br /&gt;
 [Dialer smart]&lt;br /&gt;
 Init1 = ATZ&lt;br /&gt;
 Init2 = ATQ0 V1 E1 S0=0 &amp;amp;C1 &amp;amp;D2 +FCLASS=0&lt;br /&gt;
 Modem Type = USB Modem&lt;br /&gt;
 ISDN = 0&lt;br /&gt;
 New PPPD = yes&lt;br /&gt;
 Phone = #777&lt;br /&gt;
 Modem = /dev/ttyUSB0&lt;br /&gt;
 Username = smart&lt;br /&gt;
 Password = smart&lt;br /&gt;
 FlowControl = CRTSCTS&lt;br /&gt;
 Carrier Check = No&lt;br /&gt;
 Baud = 9600&lt;br /&gt;
&lt;br /&gt;
Configuration is complete now, run usb_modeswitch on your console to change your  product usb modem from  fff5 to fff1&lt;br /&gt;
&lt;br /&gt;
 usb_modeswitch&lt;br /&gt;
&lt;br /&gt;
Almost done, Next step we need to detect what is you product id:&lt;br /&gt;
&lt;br /&gt;
 sudo modprobe usbserial vendor=0x19d2 product=0xfff1&lt;br /&gt;
&lt;br /&gt;
Last step, just do wvdial and welcome to the World Wide Web&lt;br /&gt;
&lt;br /&gt;
 sudo wvdial smart&lt;br /&gt;
&lt;br /&gt;
==Referensi==&lt;br /&gt;
&lt;br /&gt;
* http://ditatompel.crayoncreative.net/blog/how-to/connect-to-the-internet-using-smart-modem-zte-ac2726i-in-linux-backtrack/&lt;br /&gt;
&lt;br /&gt;
==Pranala Menarik==&lt;br /&gt;
&lt;br /&gt;
* [[Backtrack]]&lt;br /&gt;
* [[Beberapa Tip Hacking]]&lt;br /&gt;
* [[Wireless Hacking]]&lt;br /&gt;
* [[Keamanan Jaringan]]&lt;br /&gt;
&lt;br /&gt;
[[Category: hacking]]&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>