필터 지우기
필터 지우기

How can I configure my proxy server settings within MATLAB?

조회 수: 43 (최근 30일)
I have a proxy server in use and need to enter the information to allow MATLAB to connect to the Internet. How can I configure MATLAB to use my proxy server?

채택된 답변

MathWorks Support Team
MathWorks Support Team 2019년 6월 14일
To configure your proxy settings in MATLAB:
1) Launch MATLAB
2) Select the "Home" tab
3) Select "Preferences"
4) Select "Web"
5) Check the box labeled "Use a proxy server to connect to the Internet"
6) Fill in your proxy information
7) If authentication is necessary, check the box labeled "Use a proxy with authentication" and fill in the appropriate information
8) Use the "Test connection" button to verify that the information entered was correct
NOTE: Only R2008b and newer has the ability to test the proxy connection and enter authentication information.
  댓글 수: 2
Walter Roberson
Walter Roberson 2016년 10월 1일
Joe T asks:
how can you adjust the encryption method?
Julian Hapke
Julian Hapke 2018년 10월 4일
편집: Julian Hapke 2018년 10월 4일
you can see all methods with
methods(com.mathworks.services.Prefs)
but these do not seem to take effect immediately. Instead you could use the API:
com.mathworks.mlwidgets.html.HTMLPrefs.setUseProxy(true)
com.mathworks.mlwidgets.html.HTMLPrefs.setProxyHost('127.0.0.1') % or whatever
com.mathworks.mlwidgets.html.HTMLPrefs.setProxyPort('8080')
com.mathworks.mlwidgets.html.HTMLPrefs.setProxyUsername('YOURUSER')
com.mathworks.mlwidgets.html.HTMLPrefs.setProxyPassword('password123')

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by