How can I put the proxy setting in the iPhone

Asked By 0 points N/A Posted on -
qa-featured

Hi

I have a question about the proxy in IPHONE

I have an iPhone 4s, how do i make a siri proxy server so that i can allow siri on other devices?

Thanks

 

SHARE
Best Answer by Talka Elliot
Best Answer
Best Answer
Answered By 0 points N/A #168887

How can I put the proxy setting in the iPhone

qa-featured

Hi,

First you need a Linux or Mac operating system even Ubuntu is ok and you need to install these zypper software’s for installing packages.

1. List of zypper software’s needed,

zypper install openssl
zypper install libopenssl-devel
zypper install zlib
zypper install zlib-devel
zypper install ruby
zypper install ruby-gems
zypper install make
zypper install gcc
zypper install gcc-c++
zypper install libxml2*

2. List of ruby gems needed,

on linux: gem install eventmachine  — with-ssl-dir=/usr/bin/openssl
on mac: gem install eventmachine
gem install CFPropertyList
gem install httparty
gem install json
gem install uuidtools

3. Then create a directory ( in my case /~):

mkdir ~/hacks
cd ~/hacks
wget https://www.ketchup-mayo-senf.de/en_US/blog/MySiriProxy.zip
unzip MySiriProxy.zip
cd SiriProxy

4. Then create own certificates:

(use any password and information you want)
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
openssl genrsa -des3 -out server.key 4096

5. Then enter your ip or hostname in common name – use "guzzoni.apple.com"

openssl req -new -key server.key -out server.csr

openssl x509 -req -days 365 -in server.csr -CA ca.crt -CAkey ca.key -set_serial 01 -out server.passless.crt
openssl rsa -in server.key -out server.key.insecure
mv server.key server.key.secure
mv server.key.insecure server.passless.key

6. Then install the certificate on your phone

E-mail the ca.crt file to your self and open it in your phone. Then click install.

7. Starting the Server

If you are root start it with:

ruby start.rb

if you are not root ( Ubuntu, MacOS etc):

sudo ruby start.rb

8. But Host in your certs you need a fake dns

cd ~/hacks/SiriProxy
wget https://www.ketchup-mayo-senf.de/en_US/blog/dns.py
./python dns.py
 

Now you have successfully completed all the steps. Now you may start Siri!

Answered By 590495 points N/A #168888

How can I put the proxy setting in the iPhone

qa-featured

One of the many advantages of setting a proxy in iOS devices like iPhone is that when you configure the proxy settings on a network, the device is attached to that network. For example, if I connect my iPhone to AMA CLC Wi-Fi then set the proxy configuration, when I go home and use my own Wi-Fi the Smartphone’s proxy can only be used on AMA CLC Wi-Fi network.

To add or configure your iPhone with a proxy, go to Settings and then Wi-Fi. See image.

On the next screen, tap the Wi-Fi network where you want to add proxy to. The network you select should be one where you are presently connected to. See image.

On the next screen it displays the information about the network you selected and where you are connected to. Scroll down until you reach HTTP Proxy and then tap Manual. See image.

After tapping Manual another box will pop-up below. Enter the proxy server address, port number, and then turn on Authentication if it is available. Enter your username and password. See image.

After that exit Settings and your iPhone is now ready to use the proxy.

Related Questions